-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslug.json
More file actions
41 lines (39 loc) · 962 Bytes
/
slug.json
File metadata and controls
41 lines (39 loc) · 962 Bytes
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
{
"server": {
"port" : 4000
},
"routes": [
{ "" : "./public" },
{ "/test" : "./test/public" }
],
"packages": {
"appName": {
"libs" : ["lib/runtime.js"],
"modules" : [
"es5-shimify",
"json2ify",
"jqueryify",
"spine",
"spine/lib/local",
"spine/lib/route",
"spine/lib/manager",
"spine/lib/ajax",
"spine/lib/list",
"spine/lib/relation"
],
"paths" : ["./app"],
"target" : "./public/application.js",
"jsAfter": "jade.rethrow = function rethrow(err, filename, lineno){ throw err; } "
},
"css": {
"paths" : "./css",
"target" : "./public/application.css"
},
"test": {
"identifier" : "specs",
"jsAfter" : "require('lib/setup'); for (var key in specs.modules) specs(key);",
"paths" : ["./test/specs"],
"target" : "./test/public/specs.js"
}
}
}