forked from walmartlabs/thorax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.25 KB
/
composer.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
{
"name": "components/thorax",
"description": "An opinionated, battle-tested Backbone + Handlebars framework to build large scale web applications.",
"homepage": "http://thoraxjs.org/",
"type": "component",
"license": "MIT",
"authors": [
{
"name": "Walmart Labs",
"homepage": "http://walmartlabs.com"
}
],
"support": {
"issues": "https://github.com/walmartlabs/thorax/issues",
"source": "https://github.com/walmartlabs/thorax"
},
"require": {
"components/handlebars.js" : "*",
"components/underscore": "*",
"components/backbone": "*"
},
"suggest": {
"components/jquery": "Requires either jQuery or Zepto",
"components/zepto": "Requires either jQuery or Zepto"
},
"require": {
"components/jquery" : "*",
"components/zepto": "*"
},
"extra": {
"component": {
"scripts": [
"thorax.js",
"thorax-mobile.js"
],
"shim": {
"exports": "Reveal",
"deps": [
"handlebars",
"underscore",
"backbone"
]
}
}
}
}