This repository has been archived by the owner on Mar 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
69 lines (69 loc) · 1.83 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@cloudant/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": "4.5.2-SNAPSHOT",
"author": {
"name": "IBM Cloudant",
"email": "support@cloudant.com"
},
"contributors": [
"Glynn Bird <glynn.bird@gmail.com>"
],
"keywords": [
"cloudant",
"couchdb",
"json",
"nosql",
"database"
],
"dependencies": {
"@types/request": "^2.48.4",
"async": "2.1.2",
"concat-stream": "^1.6.0",
"cookie": "^0.4.0",
"debug": "^3.1.0",
"lockfile": "1.0.3",
"nano": "~8.2.2",
"request": "^2.81.0",
"tmp": "0.0.33"
},
"devDependencies": {
"dotenv": "2.0.0",
"tslint": "^5",
"eslint": "^4.18.2",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-header": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-standard": "^3.0.1",
"md5-file": "^3.2.3",
"mocha": "^7.1.2",
"nock": "^13",
"should": "6.0.3",
"typescript": "^2.8.3",
"uuid": "^3.0.1"
},
"scripts": {
"test": "eslint --ignore-path .eslintignore . && tsc test/typescript/*.ts && mocha && npm run tslint && npm run type-check && npm audit",
"test-verbose": "env DEBUG='*,-mocha:*' npm run test",
"test-live": "NOCK_OFF=true mocha",
"test-live-verbose": "env DEBUG='*,-mocha:*' npm run test-live",
"tslint": "tslint --project types",
"type-check": "tsc --project types/tsconfig.json",
"mocha": "mocha"
},
"main": "./cloudant.js",
"types": "types",
"engines": {
"node": ">=12"
}
}