You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
JSON
29 lines
1.1 KiB
JSON
10 years ago
|
{
|
||
|
"name" : "backbone",
|
||
|
"description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.",
|
||
|
"url" : "http://backbonejs.org",
|
||
|
"keywords" : ["model", "view", "controller", "router", "server", "client", "browser"],
|
||
|
"author" : "Jeremy Ashkenas <jeremy@documentcloud.org>",
|
||
|
"dependencies" : {
|
||
|
"underscore" : ">=1.5.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"phantomjs": "1.9.0-1",
|
||
|
"docco": "0.6.1",
|
||
|
"coffee-script": "1.6.1"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "phantomjs test/vendor/runner.js test/index.html?noglobals=true && coffee test/model.coffee",
|
||
|
"build": "uglifyjs backbone.js --mangle --source-map backbone-min.map -o backbone-min.js",
|
||
|
"doc": "docco backbone.js && docco examples/todos/todos.js examples/backbone.localstorage.js",
|
||
|
"lint": "jsl -nofilelisting -nologo -conf docs/jsl.conf -process backbone.js"
|
||
|
},
|
||
|
"main" : "backbone.js",
|
||
|
"version" : "1.1.2",
|
||
|
"license" : "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/jashkenas/backbone.git"
|
||
|
}
|
||
|
}
|