-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "consul-kv-object",
"version": "1.1.0",
"description": "Store and retrive POJsO from consul keystore",
"main": "lib/consul-kv-object.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec && xdg-open coverage/lcov-report/index.html",
"acceptance": "ACCEPTANCE=true istanbul cover --report text _mocha -- test/acceptance --recursive --check-leaks --timeout 15000",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lekoder/consul-kv-object.git"
},
"keywords": [
"consul",
"keystore",
"mapping",
"object",
"pojo"
],
"author": "Mariusz 'koder' Chwalba <mariusz@chwalba.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lekoder/consul-kv-object/issues"
},
"homepage": "https://github.com/lekoder/consul-kv-object#readme",
"devDependencies": {
"consul": "^0.26.0",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"should": "^11.1.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.6"
},
"dependencies": {
"bluebird": "^3.4.6"
},
"engines": {
"node": ">=4.0"
}
}