forked from nolanlawson/pouchdb-mapreduce-no-ddocs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 KB
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
{
"name": "pouchdb-mapreduce-no-ddocs",
"version": "2.3.2",
"description": "PouchDB's map/reduce query API as a plugin.",
"main": "./lib/index.js",
"keywords": [],
"author": "Dale Harvey <dale@arandomurl.com>",
"license": "Apache-2.0",
"repository": "https://github.com/pouchdb/pouchdb",
"jsnext:main": "./src/index.js",
"scripts": {
"build": "node bin/build-module.js ./",
"prepublish": "npm run build",
"test": "npm run build && mocha --bail test/test.js",
"test-phantom": "npm run build && zuul --no-coverage --phantom --ui mocha-bdd test/test.js",
"test-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha test/test.js && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 99",
"test-local": "npm run build && zuul --no-coverage --local 9000 --ui mocha-bdd test/test.js"
},
"files": [
"lib",
"src"
],
"dependencies": {
"inherits": "2.0.1",
"pouchdb-binary-utils": "5.4.4",
"pouchdb-collate": "1.2.0",
"pouchdb-errors": "5.4.4",
"pouchdb-mapreduce-utils": "5.4.4",
"pouchdb-md5": "5.4.4",
"pouchdb-promise": "5.4.4",
"pouchdb-utils": "5.4.4",
"scope-eval": "0.0.3",
"spark-md5": "2.0.2"
},
"browser": {
"./lib/index.js": "./lib/index-browser.js"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"denodeify": "^1.2.1",
"istanbul": "^0.4.4",
"lie": "^3.0.4",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7",
"pouchdb-memory": "^1.1.0",
"rimraf": "^2.5.2",
"rollup": "^0.33.0",
"rollup-plugin-node-resolve": "^1.7.1"
}
}