forked from jashkenas/backbone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "backbone-lodash",
"description": "Give your JS App some Backbone with Models, Views, Collections, and Events. Adding in some Lo-Dash love.",
"url": "http://backbonejs.org",
"keywords": [
"model",
"view",
"controller",
"router",
"server",
"client",
"browser"
],
"author": "Jeremy Ashkenas <[email protected]>",
"contributors": [
{
"name": "Brandon Papworth",
"email": "[email protected]"
}
],
"dependencies": {
"lodash": "~2.2.1"
},
"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-lodash.js --mangle --source-map backbone-lodash.min.map -o backbone-lodash.min.js",
"doc": "docco backbone-lodash.js && docco examples/todos/todos.js examples/backbone.localstorage.js",
"lint": "jsl -nofilelisting -nologo -conf docs/jsl.conf -process backbone-lodash.js"
},
"main": "backbone-lodash.js",
"version": "1.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandonpapworth/backbone-lodash.git"
}
}