-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json~
48 lines (48 loc) · 1.02 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
{
"name": "express-mvc-generator",
"description": "Express' mvc application generator",
"version": "2.2.2",
"author": "Raja Rama Mohan Thavalam <raja.thavalam@senecaglobal.com>",
"contributors": [
],
"keywords": [
"express",
"framework",
"MVC Node.JS",
"Express.JS MVC",
"MVC EXpress JS",
"Express Simple MVC",
"Express Model View Controler",
"MVC Node",
"Node JS MVC"
],
"repository": "rajathavalam/express-mvc-generator",
"license": "MIT",
"dependencies": {
"commander": ">0.0.0",
"mkdirp": ">0.0.0",
"sorted-object": ">0.0.0"
},
"main": "bin/express",
"preferGlobal": true,
"bin": {
"express": "./bin/express"
},
"devDependencies": {
"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 --bail --check-leaks test/",
"test-ci": "mocha --reporter spec --check-leaks test/"
}
}