-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "backup-docker",
"version": "1.5.6",
"description": "A simple command line tool to backup and restore docker containers along with their volumes",
"main": "src/main.js",
"scripts": {
"start": "node bin/run.js",
"test": "jest --coverage --silent",
"lint": "eslint ."
},
"bin": "./bin/run.js",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlaanemaa/backup-docker.git"
},
"keywords": [
"docker",
"backup",
"restore",
"inspect",
"volume"
],
"author": "Taavi Laanemaa <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tlaanemaa/backup-docker/issues"
},
"homepage": "https://github.com/tlaanemaa/backup-docker#readme",
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.2",
"jest": "^27.2.5"
},
"dependencies": {
"commander": "^4.1.1",
"dockerode": "^3.3.1",
"limit-async": "^1.3.0"
}
}