-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 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
70
71
72
73
74
{
"name": "@originalfunko/docker-lifevest",
"version": "1.0.0",
"description": "A utility to backup or transfer a Docker Swarm.",
"main": "src/index.js",
"license": "MPL-2.0",
"author": "tprobinson (https://github.com/tprobinson)",
"bin": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint src/ test/",
"test": "yarn run lint; node test/test_setup.js; jest --maxWorkers=4",
"test:coveralls": "yarn run test --coverage --coverageReporters=text-lcov | yarn exec coveralls",
"doc": "esdoc",
"docdev": "esdoc && serve -s docs"
},
"files": [
"src/**"
],
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/OriginalFunko/docker-lifevest.git"
},
"bugs": {
"url": "https://github.com/OriginalFunko/docker-lifevest"
},
"homepage": "https://github.com/OriginalFunko/docker-lifevest",
"dependencies": {
"arg": "^4.1.0",
"bluebird": "^3.5.3",
"chalk": "^2.4.2",
"log4js": "^4.0.2",
"requirefrom": "^0.2.1",
"simple-dockerode": "^0.2.2",
"url-parse-lax": "^3.0.0"
},
"devDependencies": {
"babel-jest-assertions": "^0.1.0",
"eslint": "*",
"eslint-config-standard": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-jsdoc": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-standard": "*",
"execa": "^2.0.3",
"get-unused-port": "^1.0.1",
"jest": "^24.8.0",
"jest-mock-process": "^1.2.0",
"random-words": "^1.1.0",
"temp": "^0.9.0"
},
"keywords": [
"backup",
"docker",
"funko",
"rescue",
"restore",
"swarm",
"transfer",
"utility"
],
"engines": {
"node": ">=8.3.0"
}
}