-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.02 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.02 KB
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
{
"name": "docker-discover",
"version": "0.4.1",
"description": "Service Discovery for Docker",
"keywords": [
"docker",
"etcd",
"totem",
"service",
"discovery"
],
"main": "index.js",
"bin": {
"discover": "index.js"
},
"dependencies" : {
"async": "*",
"request": "*",
"winston": "*",
"nconf": "*",
"docker.io": "*",
"node-etcd": "*",
"set": "*"
},
"devDependencies": {
"chai": "*",
"rewire": "*",
"grunt": "*",
"grunt-contrib-jshint": "*",
"grunt-mocha-cov": "*",
"mocha-term-cov-reporter": "*",
"grunt-cli": "*",
"grunt-shell": "*"
},
"scripts": {
"test": "./node_modules/bin/grunt test",
"blanket": {
"pattern": [
"discover/lib",
"discover/index"
]
}
},
"repository": {
"type": "git",
"url": "git://github.com/totem/discover.git"
},
"author": "Mike Moulton <mike@meltmedia.com>",
"bugs": {
"url": "https://github.com/totem/discover/issues"
},
"license" : "MIT"
}