-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "couch_adapter",
"version": "1.1.84",
"description": "An adpater to the couchdb that gives CRUD API for a database",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R mocha-bamboo-reporter",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"lint": "npm run lint:jshint && npm run lint:jscs && npm run lint:testJscs && npm run lint:testJshint",
"lint:jshint": "jshint ./src/ && jshint ./index.js",
"lint:jscs": "./node_modules/.bin/jscs ./src/ && jscs ./index.js",
"lint:testJscs": "./node_modules/.bin/jscs ./test/",
"lint:testJshint": "./node_modules/.bin/jshint ./test/",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/ValidUSA/couch_adapter.git"
},
"keywords": [
"couch",
"adapter"
],
"author": "Justin Ashworth",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"mocha-bamboo-reporter": "^1.1.1",
"randomstring": "^1.1.5"
},
"dependencies": {
"nano": "^6.2.0",
"nano-promises": "^1.2.0",
"pino": "^3.1.0"
}
}