forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{ "name" : "cucumber"
, "description" : "The official JavaScript implementation of Cucumber."
, "keywords" : [ "testing", "bdd", "cucumber", "gherkin", "tests" ]
, "version" : "0.2.3"
, "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]>"
]
, "repository" :
{ "type" : "git"
, "url" : "git://github.com/cucumber/cucumber-js.git"
}
, "bugs" :
{ "mail" : "[email protected]"
, "url" : "http://github.com/cucumber/cucumber-js/issues"
}
, "directories" : { "lib" : "./lib" }
, "main" : "./lib/cucumber"
, "engines" : { "node" : "0.4 || 0.5 || 0.6" }
, "dependencies" :
{ "gherkin" : "2.6.8"
, "jasmine-node" : "1.0.13"
, "connect" : "1.8.1"
, "browserify" : "1.8.1"
, "nopt" : "1.0.10"
, "underscore" : "1.2.2"
, "underscore.string" : "2.0.0"
, "rimraf" : "1.0.8"
, "mkdirp" : "0.2.1"
, "cucumber-html": "0.2.0"
, "findit": "0.1.1"
, "coffee-script": "1.1.2"
}
, "scripts" :
{ "test" : "./bin/cucumber.js && jasmine-node spec" }
, "bin": { "cucumber.js": "./bin/cucumber.js" }
, "licenses" :
[ { "type" : "MIT"
, "url" : "http://github.com/cucumber/cucumber.js/LICENSE"
}
]
}