forked from nightwatchjs/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.05 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "nightwatch",
"description": "Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.",
"version": "2.2.3-preview.1",
"author": "Andrei Rusu",
"homepage": "https://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": {
"@nightwatch/chai": "5.0.2",
"ansi-to-html": "^0.7.2",
"assertion-error": "1.1.0",
"boxen": "5.1.2",
"chai-nightwatch": "0.5.3",
"ci-info": "3.3.0",
"didyoumean": "1.2.2",
"dotenv": "10.0.0",
"ejs": "^3.1.8",
"envinfo": "7.8.1",
"fs-extra": "^10.1.0",
"glob": "^7.2.3",
"lodash.clone": "3.0.3",
"lodash.defaultsdeep": "4.6.1",
"lodash.escape": "^4.0.1",
"lodash.merge": "4.6.2",
"minimatch": "3.0.4",
"minimist": "1.2.6",
"mkpath": "1.0.0",
"mocha": "9.2.2",
"open": "^8.4.0",
"ora": "5.4.1",
"selenium-webdriver": "^4.3.1",
"semver": "7.3.5",
"stacktrace-parser": "^0.1.10",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@cucumber/cucumber": "^8.2.1",
"@types/node": "^16.7.1",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"geckodriver": "^3.0.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"mocha-junit-reporter": "^2.0.2",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.2.1",
"mochawesome-report-generator": "^6.2.0",
"mockery": "~2.1.0",
"nock": "^10.0.6",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@cucumber/cucumber": "*",
"chromedriver": "*",
"geckodriver": "*"
},
"peerDependenciesMeta": {
"chromedriver": {
"optional": true
},
"geckodriver": {
"optional": true
},
"@cucumber/cucumber": {
"optional": true
}
},
"bin": {
"nightwatch": "./bin/nightwatch"
},
"man": "",
"scripts": {
"eslint": "eslint index.js lib bin api examples cucumber-js test --quiet",
"mocha-coverage": "nyc --reporter=html mocha test/src/ --recursive",
"test": "mocha test/src/ --recursive",
"test-cucumber": "mocha test/cucumber-integration-tests --parallel",
"coverage": "npx nyc report --reporter=text-lcov > ./coverage/mocha_coverage.lcov"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": false,
"node": true
},
"rules": {
"eqeqeq": "off",
"curly": [
"error",
"all"
],
"quotes": [
"error",
"single"
]
}
},
"engines": {
"node": ">= 10.0.0"
},
"keywords": [
"nightwatch",
"nightwatchjs",
"selenium",
"testing",
"webdriver",
"browserstack",
"end-to-end",
"automated-testing",
"e2e"
],
"files": [
"bin",
"examples",
"lib",
"api",
"cucumber-js",
"README.md",
"CODE_OF_CONDUCT.md",
"LICENSE.md",
"index.js"
]
}