-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "play.builder",
"repository": { "type": "git", "url": "https://github.com/okdas/play.git" },
"private": true,
"config": {
"app": {
"root": "app",
"node": "app/node",
"views": {
"assets": {"cwd":"app/node/views/assets"},
"templates": {"cwd":"app/node/views/templates"}
}
},
"src": {
"root": "source",
"node": "source/node",
"views": {
"assets": {"cwd":"source/node/views/assets"},
"templates": {"cwd":"source/node/views/templates"}
}
}
},
"scripts": {
"start": "grunt && node app/node.js",
"build": "grunt",
"watch": "grunt watch"
},
"devDependencies": {
"coffee-script" : "1.6.3",
"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-contrib-watch" : "0.5.3",
"grunt-yaml" : "0.2.1",
"grunt-cli" : "0.1.9"
},
"engines": {
"node": "0.10.17"
}
}