-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
package.json
61 lines (61 loc) · 2.04 KB
/
package.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
{
"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",
"dependencies": {
"underscore": ">=1.8.3"
},
"devDependencies": {
"coffeescript": "^2.7.0",
"cpy-cli": "^3.1.1",
"docco": "^0.9.1",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.28.1",
"karma": "^6.3.11",
"karma-phantomjs-launcher": "^1.0.0",
"karma-qunit": "^4.1.2",
"phantomjs-prebuilt": "^2.1.7",
"qunit": "^2.17.2",
"replace-in-file": "^7.0.1",
"rollup": "^3.28.1",
"uglify-js": "^3.14.5"
},
"scripts": {
"test": "karma start && coffee test/model.coffee && npm run lint",
"build": "uglifyjs backbone.js --mangle --source-map url=backbone-min.js.map -o backbone-min.js",
"build-debug": "npx rollup -e backbone -f umd -g backbone:Backbone -n Backbone.debugInfo -o debug-info.js --no-strict modules/debug-info.js",
"alias-sourcemap": "cpy --rename=backbone-min.map backbone-min.js.map .",
"doc": "docco backbone.js && docco examples/todos/todos.js examples/backbone.localStorage.js",
"lint": "eslint backbone.js test/*.js modules/*.js",
"mark-release": "replace-in-file MARK_DEVELOPMENT MARK_RELEASE modules/debug-info.js && npm run build-debug",
"mark-develop": "replace-in-file MARK_RELEASE MARK_DEVELOPMENT modules/debug-info.js && npm run build-debug",
"prepublishOnly": "npm run test && npm run mark-release && npm run build && npm run alias-sourcemap && npm run doc && git add -u && npm run mark-develop"
},
"main": "backbone.js",
"version": "1.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jashkenas/backbone.git"
},
"files": [
"backbone.js",
"backbone-min.js",
"backbone-min.js.map",
"backbone-min.map",
"debug-info.js",
"LICENSE",
"modules/debug-info.js",
"modules/package.json"
]
}