forked from nightwatchjs/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "nightwatch",
"description": "Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.",
"version": "1.3.4",
"author": {
"name": "Andrei Rusu",
"email": "[email protected]"
},
"homepage": "http://nightwatchjs.org",
"main": "./lib/index.js",
"license": "MIT",
"bugs": "https://github.com/nightwatchjs/nightwatch/issues",
"repository": {
"type": "git",
"url": "[email protected]:nightwatchjs/nightwatch.git"
},
"dependencies": {
"assertion-error": "^1.1.0",
"chai-nightwatch": "^0.4.0",
"dotenv": "8.2.0",
"ejs": "^3.0.1",
"is-ci": "^2.0.0",
"lodash.clone": "4.5.0",
"lodash.defaultsdeep": "^4.6.1",
"lodash.merge": "^4.6.2",
"minimatch": "3.0.4",
"mkpath": "1.0.0",
"optimist": "^0.6.1",
"ora": "^4.0.3",
"proxy-agent": "^3.1.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"semver": "^7.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"js-yaml": "^3.13.1",
"mock-spawn": "^0.2.6",
"mockery": "~2.1.0",
"nock": "^12.0.3",
"nyc": "^15.0.0"
},
"peerDependencies": {
"chromedriver": "*",
"geckodriver": "*"
},
"peerDependenciesMeta": {
"chromedriver": {
"optional": true
},
"geckodriver": {
"optional": true
}
},
"optionalDependencies": {
"mocha": "^7.1.1"
},
"bin": {
"nightwatch": "./bin/nightwatch"
},
"man": "",
"scripts": {
"eslint": "eslint . --quiet",
"mocha-coverage": "nyc --reporter=html mocha test/src/",
"test": "mocha test/src/",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"node": true
},
"rules": {
"eqeqeq": "off",
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
]
}
},
"engines": {
"node": ">= 8.0.0"
},
"files": [
"bin",
"examples",
"lib",
"README.md",
"LICENSE.md",
"index.js"
]
}