forked from ryanfitz/node-circuitbreaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 731 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 731 Bytes
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
{
"name": "circuitbreaker",
"version": "0.2.1",
"description": "circuit breaker is used to provide stability and prevent cascading failures in distributed systems",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": "git://github.com/Wantworthy/node-circuitbreaker.git",
"keywords": [
"circuit",
"breaker"
],
"author": "Ryan Fitzgerald <ryan@codebrewstudios.com>",
"license": "MIT",
"dependencies": {
"q": "~0.9.3"
},
"devDependencies": {
"mocha": "~1.9.0",
"chai": "~1.5.0",
"grunt-simple-mocha": "~0.4.0",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.4.3",
"grunt-regarde": "~0.1.1",
"sinon": "~1.6.0",
"grunt-cli": "~0.1.7"
}
}