-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 981 Bytes
/
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
{
"name": "cuke-skywalker",
"version": "1.1.2",
"description": "Distribute Cucumber features to workers run in parallel",
"keywords": [
"cucumber"
],
"license": "MIT",
"author": "Jody Zeitler <[email protected]>",
"contributors": [
"Kyohei Yazawa <[email protected]>",
"Tim Mader-Brown <[email protected]>"
],
"main": "index.js",
"bin": {
"cuke-skywalker": "./bin/cuke-skywalker.js",
"cuke-skywalker-report": "./bin/cuke-skywalker-report.js"
},
"repository": {
"type": "git",
"url": "[email protected]:jody-zeitler/cuke-skywalker.git"
},
"scripts": {
"test": "./test.sh"
},
"dependencies": {
"bluebird": "^3.7.2",
"cucumber-html-reporter": "^5.1.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"chromedriver": "^80.0.1",
"cucumber": "^6.0.5",
"selenium-webdriver": "^3.6.0"
},
"peerDependencies": {
"cucumber": "2 - 6"
},
"engines": {
"node": ">=8.3.0"
}
}