This repository was archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.3 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.3 KB
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
57
58
59
{
"name": "typeframework",
"version": "0.2.1",
"description": "TypeFramework",
"author": "Zeke Kievel <zeke.levu@gmail.com>",
"license": "MIT",
"keywords": [
"typeframework",
"framework",
"mvc",
"rest",
"restful",
"router",
"app",
"api"
],
"main": "./build/TypeFramework.js",
"scripts": {
"prepublish": "npm prune",
"start": "grunt",
"pretest": "grunt test",
"test": "mocha -R spec test/integration"
},
"repository": {
"type": "git",
"url": "git://github.com/zekelevu/typeframework.git"
},
"bugs": {
"url": "https://github.com/zekelevu/typeframework/issues"
},
"dependencies": {
"express": "4.6.1",
"waterline": "0.9.16",
"compression": "~1.0.2",
"body-parser": "~1.2.0",
"method-override": "~1.0.1",
"morgan": "~1.0.1",
"lodash": "~2.4.1",
"ejs": "~1.0.0",
"express-ejs-layouts": "~1.1.0",
"commander": "~2.2.0",
"jison": "~0.4.13",
"depd": "~0.4.3"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-ts": "~1.11.2",
"grunt-file-append": "~0.0.4",
"grunt-text-replace": "~0.3.11",
"time-grunt": "~0.1.1",
"load-grunt-tasks": "~0.2.0",
"sails-disk": "~0.9.3",
"should": "~4.0.4",
"request": "~2.27.0"
},
"engines": {
"node": ">= 0.10.0"
}
}