forked from godaddy/node-flipr-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "flipr-etcd",
"version": "1.1.0",
"description": "Flipr source to retrieve config from etcd: a distributed, consistent, partition-tolerant key/value store",
"main": "lib/flipr-etcd.js",
"scripts": {
"benchmark": "node ./benchmark/percent.js && node ./benchmark/list.js && node ./benchmark/equal.js",
"check-coverage": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"integration": "mocha ./integration",
"lint": "jshint .",
"open-coverage": "open ./coverage/index.html",
"report": "istanbul report html && istanbul report text-summary",
"test-debug": "mocha --debug-brk",
"test": "npm run lint && npm run unit && npm run report && (npm run check-coverage || npm run open-coverage)",
"unit": "istanbul cover --root lib --include-all-sources --report text-summary _mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/node-flipr-etcd.git"
},
"keywords": [
"feature",
"ab",
"flags",
"configuration",
"config",
"flip",
"flipping",
"flipr",
"source",
"etcd"
],
"author": {
"name": "Grant Shively",
"email": "gshively@gmail.com"
},
"homepage": "https://github.com/godaddy/node-flipr-etcd",
"bugs": "https://github.com/godaddy/node-flipr-etcd/issues",
"license": "MIT",
"devDependencies": {
"chai": "^2.1.1",
"istanbul": "^0.3.7",
"jshint": "^2.6.3",
"mocha": "^2.2.1",
"mocha-istanbul": "^0.2.0",
"proxyquire": "^1.4.0",
"sinon": "^1.13.0",
"sinon-chai": "^2.7.0"
},
"dependencies": {
"async": "^0.9.0",
"lodash": "^3.5.0",
"memoizee": "^0.3.8",
"node-etcd": "^4.0.0"
}
}