-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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-all-dbs",
"version": "1.1.1",
"description": "PouchDB allDbs plugin",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/nolanlawson/pouchdb-all-dbs.git"
},
"keywords": [
"pouch",
"pouchdb",
"plugin",
"allDbs",
"couch",
"couchdb"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/pouchdb-all-dbs/issues"
},
"scripts": {
"test-node": "TEST_DB=testdb nyc mocha --include test/test.js --exclude test/webrunner.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 . -o dist/pouchdb.all-dbs.js && npm run min",
"min": "uglifyjs dist/pouchdb.all-dbs.js -mc > dist/pouchdb.all-dbs.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 && nyc check-coverage --lines 100 --function 100 --statements 100 --branches 100"
},
"dependencies": {
"argsarray": "0.0.1",
"es3ify": "^0.2.2",
"inherits": "~2.0.1",
"pouchdb-promise": "6.4.3",
"tiny-queue": "^0.2.0"
},
"devDependencies": {
"bluebird": "^3.7.2",
"browserify": "^17.0.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"http-server": "~0.12.3",
"jshint": "~2.12.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb": "^7.2.2",
"request": "^2.36.0",
"sauce-connect-launcher": "^1.3.2",
"selenium-standalone": "^6.23.0",
"uglify-js": "^3.12.7",
"watchify": "^4.0.0",
"wd": "^1.14.0"
},
"browser": {
"crypto": false
},
"browserify": {
"transform": [
"es3ify"
]
},
"files": [
"lib",
"dist"
]
}