-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.24 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
{
"name": "bixby-sd",
"version": "0.0.6",
"description": "Service discovery components of the Bixby framework.",
"keywords": [
"discovery",
"disco",
"sd",
"etcd",
"zookeeper"
],
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
},
"repository": {
"type": "git",
"url": "git://github.com/bixbyjs/bixby-sd.git"
},
"bugs": {
"url": "http://github.com/bixbyjs/bixby-sd/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./app",
"assembly": {
"namespace": "ns",
"components": [
"main",
"resolver",
"updater",
"local/resolver"
]
},
"dependencies": {
"is-valid-hostname": "^1.0.2"
},
"x-optionalDependencies": {
"sd-etcd": "git://github.com/NodePrime/node-sd-etcd.git#develop"
},
"devDependencies": {
"chai": "^4.2.0",
"make-node": "^0.3.0",
"mocha": "^9.1.3",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}