-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "nightwatch-Boilerplate",
"description": "nightwatch boilerplate for End-to-End test with either nightwatch plain oder nightwatch-cucumber",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Christine Zierold"
},
"repository": {
"type": "git",
"url": "git@github.com/christinezierold27/nightwatch-boilerplate.git"
},
"scripts": {
"start": "cd tests/ && nightwatch ./src && cd ../",
"start:cucumber": "nightwatch --cucumber",
"lint": "eslint ./tests --max-warnings 0",
"docker": "cd tests/ && nightwatch --env local_docker ./src && cd ../"
},
"dependencies": {
"chai-nightwatch": "^0.1.1",
"chromedriver": "^2.21.2",
"mocha-nightwatch": "^2.2.9",
"nightwatch": "^0.9.5",
"nightwatch-html-reporter": "^1.0.6",
"phantomjs-prebuilt": "^2.1.7",
"selenium-server": "^3.3.1",
"yargs": "^7.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"cucumber": "^2.0.0-rc.8",
"eslint": "^3.13.1",
"mocha": "^3.2.0",
"nightwatch-cucumber": "^7.0.0"
},
"bin": {
"nightwatch": "./node_modules/nightwatch/bin/nightwatch"
}
}