-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "consul-kv-sync",
"version": "0.3.2",
"description": "Command line interface that synchronizes a set of key-value pairs to consul.",
"main": "consul-kv-sync",
"preferGlobal": true,
"bin": {
"consul-kv-sync": "consul-kv-sync.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LeisureLink/consul-kv-sync.git"
},
"author": "Jesse Hansen <jhansen@leisurelink.com>",
"contributors": [
{
"name": "Jesse Hansen",
"email": "jhansen@leisurelink.com"
}
],
"scripts": {
"test": "mocha",
"test:watch": "onchange 'test/**/*' '*.js' '*.json' -- npm run test",
"lint": "esw --quiet",
"lint:watch": "esw --quiet --watch",
"ci": "npm run lint && npm run test"
},
"dependencies": {
"@leisurelink/skinny-loggins": "^0.3.2",
"bluebird": "^3.1.1",
"commander": "^2.9.0",
"consul": "^0.22.0",
"json-ptr": "^0.3.1",
"lodash": "^3.10.1",
"yamljs": "^0.2.8"
},
"config": {
"title": "Consul KV Sync",
"docker": {
"build_machine": "leisurelink/alpine-node-build-machine:4-latest"
}
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-leisurelink": "^1.0.1",
"eslint-watch": "^2.1.4",
"mocha": "^2.3.4",
"onchange": "^2.0.0"
}
}