-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 985 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
{
"name": "apiserver.builder",
"repository": {
"type": "git",
"url": "https://github.com/okdas/apiserver.git"
},
"private": true,
"config": {
"build": {
"app": {
"root": "app",
"node": "app/node"
},
"src": {
"root": "source",
"node": "source/node"
}
}
},
"scripts": {
"start": "grunt && node app/node.js",
"build": "grunt",
},
"devDependencies": {
"grunt": "0.4.1",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-coffee": "0.7.0",
"grunt-contrib-jade": "0.8.0",
"grunt-contrib-less": "0.6.4",
"grunt-yaml": "0.2.1",
"grunt-cli": "0.1.9",
"coffee-script": "1.6.3",
"grunt-contrib-watch": "0.5.3"
},
"engines": {
"node": "0.10.17"
}
}