-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "docker-dns",
"version": "0.2.6",
"description": "dns server backed by the docker api",
"scripts": {
"start": "node ./bin/docker-dns.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"docker",
"dns",
"api"
],
"author": {
"name": "Benjamin Foote",
"email": "[email protected]",
"url": "http://www.bnf.net/"
},
"maintainer": [
"Benjamin Foote <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:bnfinet/docker-dns.git"
},
"main": "./bin/docker-dns.js",
"bin": {
"docker-dns": "./bin/docker-dns.js"
},
"directories": {
"lib": "./lib"
},
"bugs": {
"url": "https://github.com:bnfinet/docker-dns/issues"
},
"license": "MIT",
"engines": {
"node": ">=0.10.0",
"npm": ">=1.0.0"
},
"engineStrict": true,
"dependencies": {
"async": "~0.9.0",
"dockerode": "~2.0.6",
"lazy": "~1.0.11",
"lodash": "~2.4.1",
"minimist": "~0.2.0",
"node-named": "~0.0.1"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-contrib-jshint": "~0.10.0",
"grunt-nodemon": "~0.3.0"
}
}