-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "backbone.pageable",
"description": "Local and cached pagination for backbone collections with lazy loading to fetch more",
"version": "0.1.0-dev",
"keywords": ["javascript","backbone","plugin","collection","pagination","cache","client","browser"],
"author" : "Eric Hemesath <git@heme.net>",
"homepage": "https://github.com/heme/backbone.pageable",
"github": "https://github.com/heme/backbone.pageable",
"main": "./src/backbone.pageable.js",
"maintainers": [
{
"name": "Eric Hemesath",
"email": "git@heme.net",
"web": "https://github.com/heme"
}
],
"contributors": [
{
"name": "Eric Hemesath",
"email": "git@heme.net",
"web": "https://github.com/heme"
}
],
"bugs": {
"web": "https://github.com/heme/backbone.pageable/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repositories": [
{
"type": "git",
"url": "http://github.com/heme/backbone.pageable.git"
}
],
"dependencies": {
"backbone": "*",
"underscore": "*"
},
"jam": {
"dependencies": {
"backbone": "null",
"underscore": "null"
},
"main": "./src/backbone.pageable.js",
"include": [
"src/backbone.pageable.js",
"README"
]
}
}