This repository was archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslug.json
More file actions
47 lines (44 loc) · 1.35 KB
/
slug.json
File metadata and controls
47 lines (44 loc) · 1.35 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
{
"server": {
"port": 9294
},
"routes": [
{ "" : "./public" },
{ "/test" : "./test/public" }
],
"packages": {
"app": {
"libs": [
"node_modules/jade/runtime.js",
"node_modules/lodash/index.js",
"lib/patternfly/components/jquery/dist/jquery.min.js",
"lib/patternfly/components/bootstrap/dist/js/bootstrap.min.js",
"lib/bootstrap-confirmation2/bootstrap-confirmation.min.js",
"lib/patternfly/components/bootstrap-select/dist/js/bootstrap-select.min.js",
"lib/jquery.tablesorter/dist/js/jquery.tablesorter.combined.min.js",
"lib/noty/js/noty/packaged/jquery.noty.packaged.min.js",
"lib/patternfly/dist/js/patternfly.min.js"
],
"modules": [
"spine",
"spine/lib/ajax",
"spine/lib/manager",
"spine/lib/relation",
"spine/lib/route"
],
"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"
}
}
}