forked from walmartlabs/thorax-todos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lumbar.json
52 lines (50 loc) · 1.29 KB
/
lumbar.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
44
45
46
47
48
49
50
51
52
{
"application": {
"name": "Todo",
"module": "base"
},
"platforms": [ "web" ],
"modules": {
"base": [
{"src": "lib/underscore.js", "global": true},
{"src": "lib/jquery.js", "global": true},
{"src": "lib/handlebars.js", "global": true},
{"src": "lib/backbone.js", "global": true},
{"src": "lib/backbone-localstorage.js", "global": true},
{"src": "lib/script.js", "global": true},
{"src": "lib/thorax.js", "global": true},
{"src": "lib/lumbar-loader.js"},
{"module-map": true},
{"src": "lib/lumbar-loader-standard.js"},
{"src": "lib/lumbar-loader-backbone.js"},
"js/app.js"
],
"todo": {
"static": [
{"src": "index.html", "root": true},
"destroy.png"
],
"routes": {
"": "list",
"todo": "list"
},
"scripts": [
"js/models/todo-item.js",
"js/collections/todo-list.js",
"js/views/todo-item.js",
"js/views/todo-list.js",
"js/controllers/todo.js"
],
"styles": [
"style.css"
]
}
},
"templates": {
"js/views/todo-list.js": [
"templates/todo-list.handlebars",
"templates/todo-status.handlebars"
],
"js/views/todo-item.js": ["templates/todo-item.handlebars"]
}
}