-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "backbone-pouch",
"description": "Backbone PouchDB Sync Adapter",
"version": "1.5.0",
"homepage": "http://jo.github.io/backbone-pouch/",
"author": {
"name": "Johannes J. Schmidt",
"email": "[email protected]",
"url": "http://die-tf.de"
},
"repository": {
"type": "git",
"url": "git://github.com/jo/backbone-pouch.git"
},
"bugs": {
"url": "https://github.com/jo/backbone-pouch/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://jo.github.io/backbone-pouch//blob/master/LICENSE-MIT"
}
],
"main": "backbone-pouch",
"scripts": {
"test": "tap test/*.js",
"render-docs": "bin/render-docs.js",
"copy-docs": "cp backbone-pouch.js doc/examples/todos/ && cp backbone-pouch.js doc/examples/todos-sync/",
"docs": "npm run render-docs && npm run copy-docs"
},
"dependencies": {
"backbone": "^1.1.2",
"pouchdb": "^5.0.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"highlight.js": "^8.0.0",
"marked": "^0.3.2",
"tap": "^0.4.11"
},
"keywords": [
"backbone",
"sync",
"adapter",
"pouchdb"
]
}