-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
48 lines (48 loc) · 1.08 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": "machine-share",
"version": "0.1.3",
"description": "share docker machines with friendz",
"bin": {
"machine-export": "export.js",
"machine-import": "import.js"
},
"scripts": {
"eslint": "eslint *.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhurlow/machine-share.git"
},
"keywords": [
"docker-machine",
"docker",
"export",
"import"
],
"author": "Brian Hurlow",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhurlow/machine-share/issues"
},
"homepage": "https://github.com/bhurlow/machine-share#readme",
"dependencies": {
"fs.extra": "^1.3.2",
"fstream": "^1.0.8",
"jszip": "^2.5.0",
"mkdirp": "^0.5.1",
"node-zip": "^1.1.1",
"slash": "^1.0.0",
"tar": "^2.2.1"
},
"devDependencies": {
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"pre-commit": "^1.1.3"
},
"pre-commit": [
"eslint"
]
}