12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- {
- "name": "qarel",
- "version": "1.0.0",
- "description": "QArel is a Salesforce test automation framework based on SerenityJS",
- "main": "index.js",
- "repository": "https://codeberg.org/nchursin/qarel",
- "author": "Nikita Chursin <nchursin.dev@gmail.com>",
- "license": "Apache-2.0",
- "engines": {
- "node": "^10 || ^12 || ^14",
- "npm": "^6 || ^7"
- },
- "scripts": {
- "test": "mocha && yarn compile",
- "test:e2e": "wdio wdio.conf.ts",
- "compile": "tsc --project tsconfig.json",
- "build": "yarn compile"
- },
- "dependencies": {
- "@serenity-js/assertions": "2.33.9",
- "@serenity-js/console-reporter": "2.33.9",
- "@serenity-js/core": "2.33.9",
- "@serenity-js/cucumber": "2.33.9",
- "@serenity-js/mocha": "2.33.9",
- "@serenity-js/rest": "2.33.9",
- "@serenity-js/serenity-bdd": "2.33.9",
- "@serenity-js/webdriverio": "2.33.9",
- "@wdio/cli": "7.20.8",
- "@wdio/local-runner": "7.20.8",
- "@wdio/mocha-framework": "7.20.7",
- "better-module-alias": "1.1.0",
- "jsforce": "1.11.0",
- "npm-failsafe": "0.4.3",
- "rimraf": "3.0.2",
- "tiny-types": "1.17.0",
- "tslint-microsoft-contrib": "6.2.0",
- "webdriverio": "7.20.1"
- },
- "devDependencies": {
- "@types/chai": "4.3.1",
- "@types/chai-as-promised": "7.1.5",
- "@types/chai-string": "1.4.2",
- "@types/jsforce": "1.9.42",
- "@types/mocha": "9.1.1",
- "@types/node": "17.0.39",
- "@types/sinon": "10.0.11",
- "@types/sinon-chai": "3.2.8",
- "@typescript-eslint/eslint-plugin": "5.27.0",
- "@typescript-eslint/parser": "5.27.0",
- "chai": "4.3.6",
- "chai-as-promised": "7.1.1",
- "chai-string": "1.5.0",
- "dotenv": "16.0.3",
- "eslint": "8.16.0",
- "mocha": "10.0.0",
- "prettier": "2.6.2",
- "sinon": "14.0.0",
- "sinon-chai": "3.7.0",
- "ts-node": "10.8.1",
- "tslint": "6.1.3",
- "typescript": "4.7.2"
- }
- }
|