-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"name": "components/backbone",
"description": "Give your JS App some Backbone with Models, Views, Collections, and Events.",
"keywords": ["model", "view", "controller", "router", "server", "client", "browser"],
"type": "component",
"homepage": "http://backbonejs.org",
"license": "MIT",
"support": {
"issues": "https://github.com/documentcloud/backbone/issues",
"source": "https://github.com/documentcloud/backbone"
},
"authors": [
{
"name": "Jeremy Ashkenas",
"email": "[email protected]"
}
],
"require": {
"components/underscore": ">=1.4.3"
},
"extra": {
"component": {
"scripts": [
"backbone.js"
],
"files": [
"backbone-min.js"
],
"shim": {
"deps": [
"underscore"
],
"exports": "Backbone"
}
}
}
}