-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
49 lines (49 loc) · 936 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
41
42
43
44
45
46
47
48
49
{
"name": "express-train",
"description": "express 3 framework",
"version": "4.0.2",
"author": {
"name": "Erin Noe-Payne",
"email": "[email protected]"
},
"contributors": [
{
"name": "Erin Noe-Payne",
"email": "[email protected]"
},
{
"name": "Paul Vencill",
"email": "[email protected]"
}
],
"dependencies": {
"lodash": "~2.2.1",
"handlebars": "~1.0.12",
"nject": "~2.0.1",
"glob": "~4.0.6"
},
"devDependencies": {
"mocha": "~1.13.0",
"should": "~2.0.1"
},
"keywords": [
"express",
"train",
"framework",
"web",
"webapp",
"MVC"
],
"repository": {
"type": "git",
"url": "https://github.com/autoric/express-train"
},
"main": "./lib/app.js",
"scripts": {
"prepublish": "npm prune",
"test": "mocha test -w -r should --growl --reporter spec"
},
"engines": {
"node": ">= 0.10.0"
}
}