-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "bos-couchdb",
"version": "1.0.0-beta.2",
"description": "CouchDB service for BlueOak Server",
"repository": {
"type": "git",
"url": "[email protected]:BlueOakJS/bos-couchdb.git"
},
"main": "index.js",
"scripts": {
"test": "mocha --check-leaks test/unit; npm run lint",
"test-integration": "mocha --check-leaks test/integration",
"lint": "eslint index.js lib test && echo lint complete.",
"postinstall": "typings install || echo For development time Definitely Typed support: 'npm install -g typings && typings install'",
"preversion": "npm test && npm run test-integration"
},
"author": "PointSource LLC <[email protected]>",
"contributors": [
"Sean Kennedy <[email protected]>",
"Ryan Sheppard <[email protected]",
"Patrick Wolf <[email protected]>"
],
"keywords": [
"node",
"couchdb",
"blueoak",
"blueoak-server",
"nano",
"cloudant",
"service"
],
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"lodash": "^4.16.5",
"nano": "^6.2.0",
"q": "^1.4.1",
"require-dir": "^0.3.0",
"verror": "^1.8.1"
},
"devDependencies": {
"blueoak-server": "^2.1.0",
"eslint": "^3.9.0",
"mocha": "^3.1.2",
"nock": "^9.0.2"
},
"files": [
"lib/",
"index.js",
"LICENSE"
]
}