forked from apache/nano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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": "minimalistic couchdb driver for node.js",
"license": "Apache-2.0",
"homepage": "http://github.com/dscape/nano",
"repository": "git://github.com/dscape/nano",
"version": "6.1.5",
"author": "Nuno Job <[email protected]> (http://nunojob.com)",
"keywords": [
"couchdb",
"data",
"request",
"json",
"nosql",
"micro",
"nano",
"database"
],
"dependencies": {
"request": "^2.53.0",
"follow": "^0.12.1",
"errs": "^0.3.0",
"underscore": "^1.7.0",
"debug": "^2.0.0"
},
"devDependencies": {
"async": "^0.9.0",
"tape": "^3.0.0",
"istanbul": "^0.3.2",
"jshint": "^2.5.6",
"jscs": "^1.7.0",
"nock": "^0.48.1",
"endswith": "^0.0.0",
"tape-it": "^0.3.1",
"pre-commit": "0.0.9"
},
"scripts": {
"test": "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.8.0"
},
"pre-commit": [
"jshint",
"codestyle",
"mocked",
"test",
"checkcoverage"
]
}