-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"name": "@teneff/with-retry",
"version": "1.1.3",
"description": "Decorator for retrying async operations",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint src",
"test": "jest",
"typecheck": "yarn build --noEmit -p tsconfig.jest.json",
"codecov": "codecov",
"postbuild": "cp package.json dist; cp README.md dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teneff/withRetry.git"
},
"keywords": [
"Retry",
"async",
"decorator"
],
"author": "Stefan Teneff <stefan@teneff.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teneff/withRetry/issues"
},
"homepage": "https://github.com/teneff/withRetry#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"codecov": "^3.8.3",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^28.2.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
}
}