forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.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 <jb@jbpros.com> (http://jbpros.net)",
"contributors": [
"Julien Biezemans <jb@jbpros.com> (http://jbpros.net)",
"Fernando Acorreia <fernandoacorreia@gmail.com>",
"Paul Jensen <paulbjensen@gmail.com>",
"Kushal Pisavadia",
"Olivier Melcher <olivier.melcher@gmail.com>",
"Tristan Dunn <tristanzdunn@gmail.com>",
"Ted de Koning",
"Renier Morales <renier@morales-rodriguez.net>",
"Aslak Hellesøy <aslak.hellesoy@gmail.com>",
"Aaron Garvey",
"Omar Gonzalez <omar@almerblank.com>",
"Chris Young <chris@chrisyoung.org>",
"Israel Halle <isra017@gmail.com>",
"Matteo Collina <matteo.collina@gmail.com>",
"Niklas Närhinen <niklas@narhinen.net>",
"Kim, Jang-hwan <janghwan@gmail.com>",
"Michael Zedeler <michael@zedeler.dk>",
"Tom V <tom@toc.com>",
"David Godfrey <reactiveraven@reactiveraven.co.uk>",
"Paul Shannon (http://devpaul.com)",
"Simon Dean <simon@simondean.org> (http://www.simondean.org)",
"John Wright <johngeorge.wright@gmail.com>",
"Johny Jose <johny@playlyfe.com>",
"Marat Dyatko <vectart@gmail.com>",
"Tim Perry <tim.perry@softwire.com>",
"Fedotov Daniil <hairyhum@gmail.com>",
"unknown <jharlin@NormanDev2.telogical.com>",
"Ben Van Treese <vantreeseba@gmail.com>",
"Gabe Hayes <gabriel.hayes@gmail.com>",
"Brian Clozel <brian.clozel@gmail.com>",
"Lukas Degener <l.degener@tarent.de>"
],
"repository": {
"type": "git",
"url": "git://github.com/cucumber/cucumber-js.git"
},
"bugs": {
"email": "cukes@googlegroups.com",
"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": {}
}