-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "mise",
"description": "Mise En Place for Node.js apps - a flexible generator for rapid prototyping.",
"version": "0.0.1",
"author": "Jesse Ditson <[email protected]>",
"keywords": [
"mise",
"gulp",
"express"
],
"repository": "misejs/mise",
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"cuisinart": "^0.1.3",
"deepmerge": "^0.2.7",
"findit": "^2.0.0",
"mkdirp": "^0.3.5",
"moniker": "^0.1.2",
"npmlog": "^0.1.1",
"pluralize": "^1.1.2",
"prettydiff": "^1.8.6",
"prompt": "^0.2.14",
"version": "^0.1.2"
},
"main": "bin/mise",
"preferGlobal": true,
"bin": {
"mise": "./bin/mise"
},
"devDependencies": {
"mocha": "~1.21.4",
"npm_lazy": "^1.5.0",
"npmd": "^1.3.3",
"rimraf": "~2.2.8",
"shelljs": "^0.3.0",
"should": "~4.0.4",
"supertest": "~0.13.0"
},
"engines": {
"node": ">= 0.8.0"
},
"files": [
"LICENSE",
"bin/",
"templates/"
],
"scripts": {
"test": "mocha --recursive --reporter spec --bail --check-leaks test/",
"test-travis": "mocha --recursive --reporter spec --check-leaks test/"
}
}