forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.73 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
{
"name": "cucumber",
"description": "The official JavaScript implementation of Cucumber.",
"keywords": [
"testing",
"bdd",
"cucumber",
"gherkin",
"tests"
],
"version": "0.4.0",
"homepage": "http://github.com/cucumber/cucumber-js",
"author": "Julien Biezemans <[email protected]> (http://jbpros.net)",
"contributors": [
"Julien Biezemans <[email protected]> (http://jbpros.net)",
"Fernando Acorreia <[email protected]>",
"Paul Jensen <[email protected]>",
"Kushal Pisavadia",
"Olivier Melcher <[email protected]>",
"Tristan Dunn <[email protected]>",
"Ted de Koning",
"Renier Morales <[email protected]>",
"Aslak Hellesøy <[email protected]>",
"Aaron Garvey",
"Omar Gonzalez <[email protected]>",
"Chris Young <[email protected]>",
"Israel Halle <[email protected]>",
"Matteo Collina <[email protected]>",
"Niklas Närhinen <[email protected]>",
"Kim, Jang-hwan <[email protected]>",
"Michael Zedeler <[email protected]>",
"Tom V <[email protected]>",
"David Godfrey <[email protected]>",
"Paul Shannon (http://devpaul.com)",
"Simon Dean <[email protected]> (http://www.simondean.org)",
"John Wright <[email protected]>",
"Johny Jose <[email protected]>",
"Marat Dyatko <[email protected]>",
"Tim Perry <[email protected]>",
"Fedotov Daniil <[email protected]>",
"unknown <[email protected]>",
"Ben Van Treese <[email protected]>",
"Gabe Hayes <[email protected]>",
"Brian Clozel <[email protected]>",
"Lukas Degener <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/cucumber/cucumber-js.git"
},
"bugs": {
"email": "[email protected]",
"url": "http://github.com/cucumber/cucumber-js/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/cucumber",
"engines": {
"node": "0.6 || 0.8 || 0.10 || 0.11"
},
"dependencies": {
"gherkin": "2.12.2",
"browserify": "1.15.5",
"nopt": "2.1.2",
"underscore": "1.5.2",
"underscore.string" : "2.3.3",
"cucumber-html": "0.2.3",
"walkdir": "0.0.7",
"coffee-script": "1.7.1",
"pogo": "0.5.1"
},
"devDependencies": {
"connect": "2.13.0",
"jasmine-node": "1.11.0",
"mkdirp": "0.3.5",
"rimraf": "2.2.2",
"bower": "~1.2.7"
},
"scripts": {
"test": "./bin/cucumber.js && jasmine-node spec"
},
"bin": {
"cucumber.js": "./bin/cucumber.js",
"cucumber-js": "./bin/cucumber.js"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/cucumber/cucumber.js/LICENSE"
}
],
"optionalDependencies": {}
}