-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "back-off",
"version": "4.3.0",
"description": "Circuit Breaker pattern in js",
"engines": {
"node": ">= 8"
},
"keywords": [
"resilient",
"patterns",
"robust",
"circuit-breaker",
"tryagain",
"try-again",
"async",
"promise"
],
"main": "./src/index.js",
"files": [
"/src"
],
"scripts": {
"lint": "eslint ./src",
"test": "jest",
"watch": "jest -w",
"cov": "jest --coverage",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"predocs": " jest --coverage --coverageDirectory=./dist/coverage ",
"docs": "publisher",
"preversion": "npm test",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Kevnz/back-off.git"
},
"author": "Kevin Isom <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Kevnz/back-off/issues"
},
"homepage": "https://kevinisom.info/back-off",
"devDependencies": {
"@kev_nz/eslint-config": "^5.1.0",
"@kev_nz/publisher": "^4.0.1",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"jest": "^24.9.0"
},
"dependencies": {
"@kev_nz/async-tools": "^1.2.3"
}
}