This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
forked from pouchdb-community/pouchdb-load
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.05 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-load",
"version": "1.4.4",
"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 <nolan.lawson@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-load/issues"
},
"scripts": {
"test-node": "TEST_DB=testdb,http://localhost:5984/testdb istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-browser": "./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib/*.js test/test.js",
"test": "npm run jshint && ./bin/run-test.sh",
"build": "mkdir -p dist && browserify lib/index.js -o dist/pouchdb.load.js && npm run min",
"min": "uglifyjs dist/pouchdb.load.js -mc > dist/pouchdb.load.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": {
"argsarray": "0.0.1",
"es3ify": "^0.1.3",
"inherits": "~2.0.1",
"lie": "^2.6.0",
"pouchdb": "^5.1.0",
"pouchdb-extend": "^0.1.2",
"request": "^2.47.0",
"spark-md5": "0.0.5"
},
"devDependencies": {
"bluebird": "^1.0.7",
"browserify": "~2.36.0",
"chai": "~1.8.1",
"chai-as-promised": "~4.1.0",
"http-server": "~0.5.5",
"istanbul": "^0.2.7",
"jshint": "~2.3.0",
"mocha": "~1.18",
"phantomjs": "^1.9.7-5",
"sauce-connect-launcher": "^0.4.2",
"selenium-standalone": "^4.7.0",
"uglify-js": "^2.4.13",
"watchify": "~0.4.1",
"wd": "^0.2.21"
},
"browserify": {
"transform": [
"es3ify"
]
},
"browser": {
"./lib/ajax.js": "./lib/ajax-browser.js",
"http-server": false,
"crypto": false
},
"files": ["lib", "dist"]
}