-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
{
"name": "wdio-react-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "shx rm -rf ./allure-results ./errorShots",
"lint": "eslint wdio.conf.js test/**/*.js",
"pretest": "npm run clean",
"test": "wdio",
"report": "allure generate --clean && allure open",
"report:generate": "allure generate",
"report:open": "allure open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klamping/wdio-react-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/klamping/wdio-react-example/issues"
},
"homepage": "https://github.com/klamping/wdio-react-example#readme",
"dependencies": {
"allure-commandline": "^2.5.0",
"chai": "^4.1.2",
"chromedriver": "^2.37.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"expect": "^22.4.3",
"prettier": "^1.12.1",
"webdriverio": "^5.3.5",
"yargs": "^11.0.0"
},
"devDependencies": {
"@wdio/allure-reporter": "^5.3.4",
"@wdio/cli": "^5.3.5",
"@wdio/jasmine-framework": "^5.3.2",
"@wdio/junit-reporter": "^5.3.1",
"@wdio/local-runner": "^5.3.5",
"@wdio/sauce-service": "^5.3.2",
"@wdio/selenium-standalone-service": "^5.2.2",
"@wdio/spec-reporter": "^5.2.3",
"@wdio/sync": "^5.3.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"shx": "^0.2.2",
"wdio-screenshots-cleanup-service": "0.0.7"
}
}