-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pouchdb-full-sync",
"version": "1.0.5",
"description": "PouchDB Full Sync - completely replicate databases, preserving all history",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-full-sync.git"
},
"keywords": [
"pouch",
"pouchdb",
"full",
"sync",
"couch",
"couchdb"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-full-sync/issues"
},
"scripts": {
"test-node": "istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdirp dist && npm run browserify && npm run min",
"browserify": "browserify . | ./bin/es3ify.js | derequire > dist/pouchdb.full-sync.js",
"min": "uglifyjs dist/pouchdb.full-sync.js -mc > dist/pouchdb.full-sync.min.js",
"dev": "browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "./bin/dev-server.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"inherits": "~2.0.1",
"pouchdb-checkpointer": "5.4.4",
"pouchdb-generate-replication-id": "5.4.4",
"pouchdb-promise": "5.4.4",
"pouchdb-extend": "^0.1.2",
"spark-md5": "0.0.5"
},
"devDependencies": {
"bluebird": "^3.4.1",
"browserify": "^9.0.8",
"chai": "^1.9.1",
"derequire": "^2.0.0",
"es3ify": "^0.1.3",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "2.8.0",
"mkdirp": "^0.5.0",
"mocha": "^1.18.2",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb-adapter-http": "^5.4.4",
"pouchdb-memory": "^1.0.0",
"request": "^2.36.0",
"sauce-connect-launcher": "^0.4.2",
"selenium-standalone": "^3.0.2",
"uglify-js": "^2.4.13",
"watchify": "^3.1.0",
"wd": "^0.2.21"
},
"browser": {
"crypto": false
},
"files": [
"dist",
"lib"
]
}