forked from pouchdb-community/relational-pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "relational-pouch",
"version": "3.2.0",
"description": "PouchDB, relational style",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/pouchdb-community/relational-pouch.git"
},
"keywords": [
"pouch",
"pouchdb",
"relational",
"plugin",
"couch",
"couchdb"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pouchdb-community/relational-pouch/issues"
},
"scripts": {
"test-node": "istanbul test ./node_modules/mocha/bin/_mocha test/test.js",
"test-browser": "node ./bin/test-browser.js",
"jshint": "jshint -c .jshintrc lib test/test.js",
"test": "npm run jshint && bash ./bin/run-test.sh",
"build": "mkdirp dist && browserify -t es3ify -s RelationalPouch lib/index.js -o dist/pouchdb.relational-pouch.js && npm run min",
"min": "uglifyjs dist/pouchdb.relational-pouch.js -mc > dist/pouchdb.relational-pouch.min.js",
"dev": "browserify test/test.js > test/test-bundle.js && npm run dev-server",
"dev-server": "node ./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.2.2",
"inherits": "~2.0.3",
"lie": "^3.3.0",
"pouchdb-extend": "^0.1.2",
"pouchdb-promise": "^6.4.3",
"uniq": "^1.0.1"
},
"peerDependencies": {
"pouchdb-find": "^7.0.0"
},
"devDependencies": {
"blob-util": "^1.3.0",
"bluebird": "^3.5.4",
"browserify": "^15.2.0",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"http-server": "~0.10.0",
"istanbul": "^0.4.5",
"jshint": "2.9.5",
"mocha": "~4.1.0",
"phantomjs-prebuilt": "^2.1.16",
"pouchdb-find": "^7.0.0",
"pouchdb-memory": "^6.0.0",
"request": "^2.88.0",
"sauce-connect-launcher": "1.2.6",
"selenium-standalone": "6.16.0",
"uglify-js": "^3.5.6",
"watchify": "~3.9.0",
"wd": "1.11.2",
"mkdirp": "^0.5.1"
},
"files": [
"lib",
"dist"
]
}