-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.49 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": "wdio5-boilerplate-project",
"version": "1.0.0",
"description": "Here is a boilerplate project for wdio v5",
"main": "wdio.cong.js",
"scripts": {
"pretty": "prettier --write",
"lint": "jest",
"precommit": "lint-staged",
"test": "find ./reports/allure-results -type f ! -name '*.log' -exec rm -rf {} \\; && wdio wdio.conf.js",
"report": "allure generate --clean ./reports/allure-results -o ./reports/allure-report && allure open ./reports/allure-report"
},
"lint-staged": {
"*.js": [
"npm run pretty",
"eslint",
"git add"
]
},
"author": {
"name": "Kirill Golovan",
"email": "krgolovan@gmail.com"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@wdio/allure-reporter": "^5.4.16",
"@wdio/cli": "^5.4.17",
"@wdio/dot-reporter": "^5.4.15",
"@wdio/local-runner": "^5.4.17",
"@wdio/mocha-framework": "^5.4.14",
"@wdio/selenium-standalone-service": "^5.0.0",
"@wdio/spec-reporter": "^5.4.15",
"@wdio/sync": "^5.4.14",
"chai": "^4.2.0",
"eslint": "^5.13.0",
"eslint-plugin-webdriverio": "^1.0.1",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
}
}