forked from cloudant/nodejs-cloudant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "cloudant",
"description": "Cloudant Node.js client",
"license": "Apache-2.0",
"homepage": "http://github.com/cloudant/nodejs-cloudant",
"repository": {
"type": "git",
"url": "git@github.com:cloudant/nodejs-cloudant.git"
},
"version": "1.8.0-SNAPSHOT",
"author": {
"name": "IBM Cloudant",
"email": "support@cloudant.com"
},
"contributors": [
"Glynn Bird <glynn.bird@gmail.com>"
],
"keywords": [
"cloudant",
"couchdb",
"json",
"nosql",
"database"
],
"dependencies": {
"async": "2.1.2",
"debug": "2.2.0",
"cloudant-nano": "6.5.0",
"request": "2.76.0"
},
"devDependencies": {
"dotenv": "2.0.0",
"mocha": "3.1.2",
"nock": "9.0.0",
"nsp": "^2.6.3",
"should": "6.0.3"
},
"scripts": {
"test": "mocha tests/*.js && nsp check",
"test-verbose": "env DEBUG='*,-mocha:*' npm run test",
"test-live": "NOCK_OFF=true mocha --timeout=5000 tests/*.js",
"test-live-verbose": "env DEBUG='*,-mocha:*' npm run test-live"
},
"main": "./cloudant.js",
"engines": {
"node": ">=0.8.0"
}
}