forked from cucumber/cucumber-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.47 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cucumber",
"description": "The official JavaScript implementation of Cucumber.",
"keywords": [
"testing",
"bdd",
"cucumber",
"gherkin",
"tests"
],
"version": "0.4.8",
"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>",
"Simon Lampen <simonlampen@vinsight.net>",
"Eddie Loeffen <eddieloeffen@gmail.com>",
"Stanley Shyiko <stanley.shyiko@gmail.com>",
"Artur Kania <kaniartur@gmail.com>",
"Sam Saccone <sam@samx.it>",
"Craig Morris <craig.michael.morris@gmail.com>",
"Gary Taylor <gary.taylor@hismessages.com>",
"Krispin Schulz <krispin.schulz@blackbridge.com>",
"Elwyn <elwyn@L1.co.nz>",
"Jan-Eric Duden <jeduden@gmail.com>",
"kostya.misura <kostya.misura@gmail.com>",
"Julian <microweb10@gmail.com>",
"nebehr <thorgeir@tut.by>",
"Jesse Harlin <harlinjesse@gmail.com>"
],
"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.8 || 0.10 || 0.11 || 0.12 || >= 1.0.0"
},
"dependencies": {
"browserify": "5.11.1",
"coffee-script": "1.8.0",
"cucumber-html": "0.2.3",
"gherkin": "2.12.2",
"nopt": "3.0.1",
"pogo": "0.9.4",
"underscore": "1.7.0",
"underscore.string": "2.3.3",
"walkdir": "0.0.7"
},
"devDependencies": {
"connect": "3.2.0",
"jasmine-node": "1.14.5",
"jshint": "^2.6.0",
"mkdirp": "0.3.5",
"rimraf": "2.2.8",
"serve-static": "1.6.1",
"through": "2.3.4",
"uglifyify": "2.5.0",
"exorcist": "^0.1.6"
},
"scripts": {
"test": "jshint bundler.js bin lib spec && jasmine-node spec && ./bin/cucumber.js -i"
},
"bin": {
"cucumber.js": "./bin/cucumber.js",
"cucumber-js": "./bin/cucumber.js"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/cucumber/cucumber.js/LICENSE"
}
],
"optionalDependencies": {}
}