-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.77 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
75
76
77
78
79
80
{
"name": "docker-api-wrapper",
"version": "0.2.16",
"description": "The Docker API utils library",
"keywords": [
"docker",
"api",
"dockerapi",
"saigon",
"saigondevs"
],
"homepage": "https://github.com/saigon-devs/docker-api-wrapper",
"bugs": {
"url": "https://github.com/saigon-devs/docker-api-wrapper/issues"
},
"files": [
"index.js",
"lib/DockerBase.js",
"lib/Container.js",
"lib/Image.js",
"lib/Misc.js"
],
"main": "index.js",
"scripts": {
"compilefile": "./node_modules/.bin/babel index.es6 --out-file index.js",
"compilefolder": "./node_modules/.bin/babel src --out-dir lib",
"compile": "npm run compilefolder & npm run compilefile",
"prepublish": "npm run compile",
"jasmine": "./node_modules/.bin/jasmine",
"test": "npm run compile & npm run jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saigon-devs/docker-api-wrapper.git"
},
"author": {
"name": "phuongle"
},
"contributors": [
{
"name": "thangchung",
"email": "[email protected]"
},
{
"name": "phihuynh",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"core-js": "^1.1.1",
"fs": "0.0.2",
"http": "0.0.0",
"lodash": "^3.10.1",
"querystring": "^0.2.0",
"util": "^0.10.3",
"axios": "^0.5.4"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.10",
"eslint": "^1.2.0",
"jasmine": "^2.3.2"
},
"maintainers": [
{
"name": "phuongle",
"email": "[email protected]"
},
{
"name": "thangchung",
"email": "[email protected]"
},
{
"name": "phihuynh",
"email": "[email protected]"
}
]
}