-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
62
63
64
65
{
"name": "backbone.obscura",
"description": "A read-only proxy of a Backbone.Collection that can easily be filtered, sorted, and paginated.",
"version": "1.0.1",
"homepage": "https://github.com/jmorrell/backbone.obscura",
"main": "index.js",
"license": "MIT",
"keywords": [
"backbone",
"plugin",
"filtering",
"filter",
"sorting",
"pagination",
"paginating",
"collection",
"client",
"browser",
"browserify"
],
"author": {
"name": "Jeremy Morrell",
"email": "[email protected]",
"url": "http://rathercurio.us"
},
"contributors": [
{
"name": "Patrick Mulder",
"email": "<[email protected]>"
},
{
"name": "Michael Cordingley",
"email": "<[email protected]>"
},
{
"name": "ddavydov"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jmorrell/backbone.obscura.git"
},
"devDependencies": {
"karma": "^0.12.23",
"karma-firefox-launcher": "~0.1.0",
"karma-mocha": "~0.1.0",
"mocha": "~1.12.0",
"bower": "~1.3.1",
"cjs-umd": "git://github.com/nicolashery/cjs-umd#95f7f651ab1034c8caeda54e09f473da1fc49f11"
},
"scripts": {
"start": "npm run bower && npm run build && npm run test",
"build": "node build.js",
"bower": "./node_modules/bower/bin/bower install",
"test": "./node_modules/karma/bin/karma start --browsers Firefox --single-run"
},
"dependencies": {
"backbone-paginated-collection": "~0.3.0",
"backbone-filtered-collection": "~0.3.0",
"underscore": ">=1.5.1",
"backbone": ">=1.0.0",
"backbone-sorted-collection": "~0.3.0",
"backbone-collection-proxy": "~0.2.0"
}
}