-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
47 lines (47 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "web-automation",
"description": "Web Automation Framework",
"version": "1.0.0",
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts ./src ./config",
"selenium": "docker-compose up -d",
"selenium:vnc": "docker-compose -f docker-compose.vnc.yml up -d",
"selenium:stop": "docker-compose down -v",
"test": "./node_modules/.bin/cross-env VNC_SUPPORT=false DEBUG_TEST=false npm run test:run:local",
"test:vnc": "./node_modules/.bin/cross-env VNC_SUPPORT=true DEBUG_TEST=false npm run test:run:local",
"test:run:local": "npm run report:clean && npm run test:run && npm run report || npm run report",
"test:run": "node ./node_modules/@wdio/cli/bin/wdio.js --spec",
"report": "node ./cucumber.report.conf.js",
"report:clean": "rimraf ./report",
"ci:build": "docker-compose -f docker-compose.ci.yml build",
"ci": "docker-compose -f docker-compose.ci.yml up --force-recreate --renew-anon-volumes --abort-on-container-exit --exit-code-from node"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/cucumber": "^6.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"@wdio/cli": "^5.19.0",
"@wdio/cucumber-framework": "^5.20.0",
"@wdio/local-runner": "^5.19.0",
"@wdio/spec-reporter": "^5.18.7",
"@wdio/sync": "^5.18.7",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"multiple-cucumber-html-reporter": "^1.16.0",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"wdio-cucumberjs-json-reporter": "^1.1.3",
"webdriverio": "^5.19.0"
},
"engines": {
"node": ">=10.0.0"
}
}