-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "@cloudant/couchbackup",
"version": "2.11.2-SNAPSHOT",
"description": "CouchBackup - command-line backup utility for Cloudant/CouchDB",
"homepage": "https://github.com/IBM/couchbackup",
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/couchbackup.git"
},
"keywords": [
"CouchDB",
"Cloudant",
"couch",
"backup",
"command-line"
],
"bugs": {
"url": "https://github.com/IBM/couchbackup/issues",
"email": "cldtsdks@us.ibm.com"
},
"license": "Apache-2.0",
"engines": {
"node": "^18 || ^20 || ^22"
},
"dependencies": {
"@ibm-cloud/cloudant": "0.11.0",
"commander": "12.1.0",
"debug": "4.3.7"
},
"peerDependencies": {
"ibm-cloud-sdk-core": "^5.0.2",
"axios": "^1.7.4"
},
"main": "app.js",
"bin": {
"couchbackup": "bin/couchbackup.bin.js",
"couchrestore": "bin/couchrestore.bin.js"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"http-proxy": "1.18.1",
"mocha": "10.8.2",
"nock": "13.5.6",
"tail": "2.2.6",
"uuid": "11.0.3"
},
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"unit": "mocha --grep \"#unit\"",
"test": "npm run lint && npm run unit"
},
"files": [
"/app.js",
"/bin",
"/includes"
]
}