forked from lekoder/consul-to-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "consul-to-json",
"version": "1.1.0",
"description": "Consul KV-store backup and restore utility",
"main": "app/consul-to-json.js",
"scripts": {
"test:acceptance": "./test/acceptance.sh",
"test:prepare": "./test/prepare-acceptance.sh",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
},
"bin": {
"consul-to-json": "app/consul-to-json.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lekoder/consul-to-json.git"
},
"keywords": [
"consul",
"backup",
"json",
"kv"
],
"author": "Mariusz 'koder' Chwalba <mariusz@chwalba.net>",
"contributors": "Hamdan Radaideh <hamdan.radaideh@hotmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lekoder/consul-to-json/issues"
},
"homepage": "https://github.com/lekoder/consul-to-json#readme",
"dependencies": {
"bluebird": "^3.4.6",
"commander": "^2.20.3",
"consul": "^0.26.0",
"consul-kv-object": "^1.1.0"
},
"engines": {
"node": ">=4.0"
}
}