-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 864 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 864 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "levee",
"version": "1.5.1",
"description": "A circuitbreaker implementation for Node.js",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"cover": "nyc npm run test",
"lint": "eslint index.js lib/*.js"
},
"keywords": [
"circuit",
"breaker",
"circuitbreaker",
"levee"
],
"author": "Erik Toth <totherik@gmail.com>",
"license": "ISC",
"devDependencies": {
"@hapi/wreck": "^17.1.0",
"eslint": "^6.1.0",
"nyc": "^15.1.0",
"tape": "^4.11.0"
},
"dependencies": {
"@hapi/hoek": "^9.1.0",
"CBuffer": "^2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/krakenjs/levee.git"
},
"bugs": {
"url": "https://github.com/krakenjs/levee/issues"
},
"homepage": "https://github.com/krakenjs/levee"
}