-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "couchdb-iterator",
"version": "2.0.3",
"description": "A fast and easy to ease CouchDB iterator for views and all documents",
"main": "index.js",
"scripts": {
"lint": "eslint '{*.js,lib/**/*.js,test/**/*.js}' --ignore-pattern=test/coverage",
"test": "mocha --bail -t 15000",
"test-cov": "istanbul cover --dir test/coverage _mocha -- --bail -t 15000 && echo Coverage lies in test/coverage/lcov-report/index.html",
"test-travis": "istanbul cover _mocha --report lcovonly -- --bail -t 15000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bugs": {
"url": "https://github.com/IndigoUnited/node-couchdb-iterator/issues/"
},
"repository": {
"type": "git",
"url": "git://github.com/IndigoUnited/node-couchdb-iterator.git"
},
"keywords": [
"couch",
"couchdb",
"view",
"iterator",
"alldocs",
"paginator"
],
"author": "IndigoUnited <[email protected]> (http://indigounited.com)",
"license": "MIT",
"dependencies": {
"lodash.find": "^4.2.0",
"lodash.mapkeys": "^4.2.0",
"lodash.omit": "^4.1.0",
"lodash.snakecase": "^4.0.0",
"nano": "^6.2.0",
"p-try": "^1.0.0",
"swift-transform": "^1.0.0"
},
"devDependencies": {
"@satazor/eslint-config": "^3.0.0",
"bluebird": "^3.3.1",
"chai": "^4.0.2",
"coveralls": "^2.11.6",
"eslint": "^3.0.0",
"istanbul": "^0.4.1",
"mocha": "^3.0.1"
},
"engines": {
"node": ">=4.0.0"
}
}