equal
deleted
inserted
replaced
|
1 { |
|
2 "name" : "backbone", |
|
3 "description" : "Give your JS App some Backbone with Models, Views, Collections, and Events.", |
|
4 "url" : "http://backbonejs.org", |
|
5 "keywords" : ["model", "view", "controller", "router", "server", "client", "browser"], |
|
6 "author" : "Jeremy Ashkenas", |
|
7 "dependencies" : { |
|
8 "underscore" : ">=1.7.0" |
|
9 }, |
|
10 "devDependencies": { |
|
11 "coffee-script": "1.7.1", |
|
12 "docco": "0.7.0", |
|
13 "karma": "^0.12.31", |
|
14 "karma-phantomjs-launcher": "^0.1.4", |
|
15 "karma-qunit": "^0.1.5", |
|
16 "qunitjs": "^1.18.0", |
|
17 "uglify-js": "^2.4.17" |
|
18 }, |
|
19 "scripts": { |
|
20 "test": "./node_modules/karma/bin/karma start && coffee test/model.coffee", |
|
21 "build": "uglifyjs backbone.js --mangle --source-map backbone-min.map -o backbone-min.js", |
|
22 "doc": "docco backbone.js && docco examples/todos/todos.js examples/backbone.localStorage.js", |
|
23 "lint": "jsl -nofilelisting -nologo -conf docs/jsl.conf -process backbone.js" |
|
24 }, |
|
25 "main" : "backbone.js", |
|
26 "version" : "1.2.2", |
|
27 "license" : "MIT", |
|
28 "repository": { |
|
29 "type": "git", |
|
30 "url": "https://github.com/jashkenas/backbone.git" |
|
31 }, |
|
32 "files": [ |
|
33 "backbone.js", "backbone-min.js", "backbone-min.map", "LICENSE" |
|
34 ] |
|
35 } |
|
36 |