forked from apache/couchdb-nano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "nano",
"description": "The official CouchDB client for Node.js",
"license": "Apache-2.0",
"homepage": "http://github.com/apache/couchdb-nano",
"repository": "http://github.com/apache/couchdb-nano",
"version": "6.4.3",
"author": "Apache CouchDB <[email protected]> (http://couchdb.apache.org)",
"keywords": [
"couchdb",
"data",
"request",
"json",
"nosql",
"micro",
"nano",
"database"
],
"dependencies": {
"cloudant-follow": "~0.16.1",
"debug": "^2.2.0",
"errs": "^0.3.2",
"lodash.isempty": "^4.4.0",
"request": "~2.83.0"
},
"devDependencies": {
"async": "^2.1.2",
"tape": "^4.6.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"jscs": "^3.0.7",
"nock": "^9.0.0",
"endswith": "^0.0.0",
"tape-it": "^0.3.1"
},
"scripts": {
"test": "bash scripts/run_couchdb_on_travis.sh; npm run mocha; bash scripts/stop_couchdb_on_travis.sh",
"mocha": "DEBUG=* NOCK_OFF=true istanbul cover tape tests/*/*/*.js",
"unmocked": "NOCK_OFF=true tape tests/*/*/*.js",
"mocked": "tape tests/*/*/*.js",
"jshint": "jshint tests/*/*/*.js lib/*.js",
"codestyle": "jscs -p google tests/*/*/*.js lib/*.js",
"coverage": "open coverage/lcov-report/index.html",
"checkcoverage": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100"
},
"main": "./lib/nano.js",
"engines": {
"node": ">=0.12"
},
"pre-commit": [
"jshint",
"codestyle",
"mocked",
"test",
"checkcoverage"
]
}