forked from walmartlabs/thorax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lumbar.json
75 lines (68 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "thorax",
"mixins": {
"thorax-dep-jquery": {
"scripts": [
{"src": "lib/jquery.js", "global": true},
{"src": "lib/underscore.js", "global": true},
{"src": "lib/backbone.js", "global": true},
{"src": "lib/handlebars.js", "global": true},
]
},
"thorax-dep-zepto": {
"scripts": [
{"src": "lib/zepto.js", "global": true},
{"src": "lib/underscore.js", "global": true},
{"src": "lib/backbone.js", "global": true},
{"src": "lib/handlebars.runtime.js", "global": true},
]
},
"thorax": {
"scripts": [
{"src": "src/thorax.js"},
{"src": "src/util.js"},
{"src": "src/mixin.js"},
{"src": "src/event.js"},
{"src": "src/helper-view.js"},
{"src": "src/data-object.js"},
{"src": "src/model.js"},
{"src": "src/collection.js"},
{"src": "src/form.js"},
{"src": "src/layout.js"},
{"src": "src/helpers/collection.js"},
{"src": "src/helpers/empty.js"},
{"src": "src/helpers/template.js"},
{"src": "src/helpers/url.js"},
{"src": "src/helpers/view.js"},
]
},
"thorax-ie": {
"scripts": [
{"src": "src/ie.js"}
]
},
"thorax-helper-tags": {
"scripts": [
{"src": "src/helpers/button-link.js"},
{"src": "src/helpers/element.js"},
{"src": "src/helpers/super.js"},
]
},
"thorax-loading": {
"scripts": [
{"src": "src/loading.js"},
{"src": "src/helpers/loading.js"}
]
},
"thorax-mobile": {
"scripts": [
{"src": "src/mobile.js"},
{"src": "src/mobile/fast-click.js"},
{"src": "src/mobile/tap-highlight.js"}
]
}
},
"templates": {
"template": "Thorax.templates['{{{without-extension name}}}'] = {{handlebarsCall}}({{{data}}});"
}
}