forked from nightwatchjs/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.48 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"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.5.1",
"author": {
"name": "Andrei Rusu",
"email": "andrei@nightwatchjs.org"
},
"homepage": "http://nightwatchjs.org",
"main": "./lib/index.js",
"license": "MIT",
"bugs": "https://github.com/nightwatchjs/nightwatch/issues",
"repository": {
"type": "git",
"url": "git@github.com:nightwatchjs/nightwatch.git"
},
"dependencies": {
"assertion-error": "^1.1.0",
"chai-nightwatch": "^0.4.0",
"ci-info": "^2.0.0",
"dotenv": "7.0.0",
"ejs": "^2.7.4",
"envinfo": "^7.5.1",
"lodash.clone": "3.0.3",
"lodash.defaultsdeep": "^4.6.1",
"lodash.merge": "^4.6.2",
"minimatch": "3.0.4",
"minimist": "^1.2.5",
"mkpath": "1.0.0",
"ora": "^4.0.3",
"proxy-agent": "^3.1.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"semver": "^6.3.0",
"strip-ansi": "^6.0.0",
"mocha": "6.2.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"js-yaml": "^3.13.1",
"lodash": ">=4.17.19",
"mocha": "^6.2.3",
"mock-spawn": "^0.2.1",
"mockery": "~2.1.0",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"selenium-webdriver": "^4.0.0-alpha.7",
"webdriverio": "^6.6.6"
},
"peerDependencies": {
"chromedriver": "*",
"geckodriver": "*"
},
"peerDependenciesMeta": {
"chromedriver": {
"optional": true
},
"geckodriver": {
"optional": true
}
},
"optionalDependencies": {},
"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"
},
"keywords": [
"nightwatch",
"nightwatchjs",
"selenium",
"testing",
"webdriver",
"browserstack",
"end-to-end",
"automated-testing",
"e2e"
],
"files": [
"bin",
"examples",
"lib",
"README.md",
"LICENSE.md",
"index.js"
]
}