-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 927 Bytes
/
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
{
"name": "caddis",
"version": "0.4.4",
"repository": {
"type": "git",
"url": "https://github.com/bustardcelly/caddis"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bustardcelly/caddis/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.10.0"
},
"bin": "./bin/caddis",
"main": "./lib/caddis",
"scripts": {
"test-global": "node node_modules/.bin/cucumber-js",
"test-module": "node node_modules/.bin/cucumber-js --features features-module",
"test": "npm run test-global && npm run test-module"
},
"devDependencies": {
"cucumber": "~0.3.3",
"chai": "~1.9.0",
"sinon": "~1.8.2",
"sinon-chai": "~2.5.0",
"supertest": "~0.9.0",
"request": "~2.34.0"
},
"dependencies": {
"forever": "~0.10.11",
"colors": "~0.6.2",
"mkdirp": "~0.3.5",
"lodash": "~2.4.1",
"minimist": "0.0.8",
"map-stream": "~0.1.0"
}
}