-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
44 lines (42 loc) · 1.07 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
{
"name": "backbone-query",
"description": "Lightweight Query API for Backbone Collections",
"version": "0.2.3",
"author": "Dave Tonge <[email protected]> (https://github.com/davidgtonge)",
"tags": [
"backbone",
"underscore",
"mongo",
"query"
],
"main": "./backbone-query",
"repository": {
"type": "git",
"url": "https://[email protected]/davidgtonge/backbone_query.git"
},
"dependencies": {
"backbone": ">=0.5.x",
"underscore": ">=1.1.x"
},
"devDependencies": {
"coffee-script": ">=1.x.x",
"mocha": "",
"uglify-js": "1.2.2"
},
"jam": {
"dependencies": {
"underscore": "*",
"backbone": "*",
"jquery": "*"
},
"include": ["backbone-query.js"],
"main": "backbone-query.js",
"shim": {
"deps": ["jquery", "backbone", "underscore"],
"exports": "Backbone.QueryCollection"
}
},
"scripts": {
"test": "mocha"
}
}