-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "brakes",
"version": "3.1.0",
"description": "Node.js Circuit Breaker Pattern",
"main": "index.js",
"files": [
"lib/",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/awolden/brakes.git"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"test:lint": "eslint .",
"coverage": "nyc --reporter lcov --reporter text npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"keywords": [
"circuit",
"breaker",
"circuit-breaker",
"circuitbreaker",
"hystrix"
],
"greenkeeper": {
"ignore": [
"eslint",
"eslint-config-airbnb",
"eslint-plugin-import"
]
},
"author": "Alex Wolden <awolden@gmail.com>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6"
},
"devDependencies": {
"chai": "^4.0.1",
"chai-things": "^0.2.0",
"coveralls": "^3.0.3",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"mocha": "^3.5.2",
"nyc": "^11.2.1",
"sinon": "^7.2.7"
}
}