forked from pouchdb-community/pouchdb-load
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "pouchdb-load",
"version": "1.5.0",
"description": "PouchDB Load - load dumped CouchDB/PouchDB databases on the client",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-load.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"load",
"dump",
"couchdb"
],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-load/issues"
},
"scripts": {
"test-browser": "zuul --no-coverage --phantom --ui mocha-bdd test/test.js",
"jshint": "jshint -c .jshintrc lib test/test.js",
"test": "npm run jshint && istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"build": "mkdirp dist && browserify . -p bundle-collapser/plugin -s PouchDBLoad -t es3ify > dist/pouchdb.load.js && npm run min",
"min": "uglifyjs dist/pouchdb.load.js -mc > dist/pouchdb.load.min.js",
"test-local": "zuul --no-coverage --local 9000 --ui mocha-bdd test/test.js",
"coverage": "npm test --coverage && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"argsarray": "^0.0.1",
"inherits": "^2.0.3",
"pouchdb-ajax": "^6.4.3",
"pouchdb-checkpointer": "^7.0.0",
"pouchdb-extend": "^0.1.2",
"pouchdb-generate-replication-id": "^7.0.0",
"pouchdb-promise": "^6.4.3"
},
"devDependencies": {
"browserify": "^16.2.2",
"bundle-collapser": "^1.3.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"es3ify": "^0.2.2",
"http-server": "^0.11.1",
"istanbul": "^0.4.5",
"jshint": "^2.9.6",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"pouchdb-memory": "^6.0.0",
"sauce-connect-launcher": "^1.2.4",
"selenium-standalone": "^6.15.2",
"uglify-js": "^3.4.9",
"watchify": "^3.11.0",
"zuul": "^3.12.0"
},
"browser": {
"http-server": false
},
"files": [
"lib",
"dist"
]
}