forked from expressjs/generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "emvc-generator",
"description": "emvc application generator",
"version": "0.2.0",
"author": "Nicholas Penree <[email protected]>",
"contributors": [
"TJ Holowaychuk <[email protected]>",
"Aaron Heckmann <[email protected]>",
"Ciaran Jessup <[email protected]>",
"Douglas Christopher Wilson <[email protected]>",
"Guillermo Rauch <[email protected]>",
"Jonathan Ong <[email protected]>",
"Roman Shtylman <[email protected]>"
],
"keywords": [
"emvc",
"express",
"framework",
"sinatra",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"repository": "emvc/generator",
"license": "MIT",
"dependencies": {
"commander": "2.7.1",
"mkdirp": "0.5.1",
"sorted-object": "1.0.0"
},
"main": "bin/emvc",
"preferGlobal": true,
"bin": {
"emvc": "./bin/emvc"
},
"devDependencies": {
"emvc": "^0.6.4-alpha",
"mocha": "2.2.5",
"rimraf": "~2.2.8",
"supertest": "1.0.1"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"LICENSE",
"bin/",
"templates/"
],
"scripts": {
"test": "mocha --reporter spec --check-leaks test/"
}
}