-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "turnpike",
"description": "A lightweight HMVC framework with flexible opinions.",
"version": "0.4.0-pre.1",
"homepage": "https://github.com/jay-depot/turnpike",
"repository": "https://github.com/jay-depot/turnpike.git",
"author": "Jason DePeaux <[email protected]> (http://github.com/jay-depot)",
"main": "index",
"license": "MIT",
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"scripts": {
"test": "istanbul cover ./test/all.js"
},
"bin": {
"turnpike": "./bin/turnpike.js"
},
"engines": {
"node": "*"
},
"dependencies": {
"async": "^0.9.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015-node5": "^1.1.0",
"babel-register": "^6.9.0",
"body-parser": "^1.9.0",
"cmdln": "^4.1.1",
"cookie-parser": "^1.3.3",
"csurf": "^1.6.1",
"express": "^4.9.7",
"express-session": "^1.8.2",
"fs-extra": "~0.30.0",
"hooks": "~0.3.2",
"jade": "~1.11.0",
"lodash": "^4.13.1",
"morgan": "^1.3.2",
"multiparty": "~4.1.2",
"negotiator": "~0.6.1",
"underscore": "~1.8.3",
"underscore.string": "~3.3.4"
},
"devDependencies": {
"istanbul": "^0.4.4",
"shelljs": "^0.7.0",
"test": "~0.6.0",
"restler": "~3.2.2"
}
}