forked from simondean/parallel-cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.5 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
{
"name": "parallel-cucumber",
"description": "Executes Cucumber scenarios in parrallel, reducing the amount of time tests take to execute",
"keywords": [
"cucumber",
"cucumber-js",
"grid",
"parallel",
"scale"
],
"version": "1.0.1",
"homepage": "http://github.com/simondean/parallel-cucumber-js",
"author": {
"name" : "Simon Dean",
"email" : "[email protected]",
"url" : "http://www.simondean.org"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/simondean/parallel-cucumber-js.git"
},
"bugs": {
"url": "http://github.com/simondean/parallel-cucumber-js/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/parallel-cucumber",
"engines": {
"node": ">=0.8.19"
},
"dependencies": {
"yargs": "~1.2.6",
"async": "~0.9.0",
"glob": "~4.0.2",
"debug": "~1.0.2",
"js-yaml": "~3.0.2",
"colors": "~0.6.2",
"gherkin": "~4.0.0"
},
"peerDependencies": {
"cucumber": "~1.0.0"
},
"devDependencies": {
"grunt-cli": "~0.1.13",
"grunt": "~0.4.4",
"grunt-contrib-jshint": "~0.6.0",
"grunt-contrib-clean": "~0.4.1",
"grunt-shell": "~0.7.0",
"deep-diff": "~0.3.4",
"diff": "~1.0.8",
"stripcolorcodes": "~0.1.0"
},
"bin": {
"parallel-cucumber-js": "./bin/parallel-cucumber-js"
},
"scripts": {
"test": "grunt test"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/simondean/parallel-cucumber/LICENSE"
}
]
}