-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "recaller",
"version": "2.0.0",
"description": "Promise-based function retry utility.",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prettier": "prettier --write .",
"test:style": "prettier --check .",
"test:lint": "eslint .",
"test:types": "tsc --noEmit",
"test:vitest": "vitest --coverage",
"test": "pnpm run test:style && pnpm run test:lint && pnpm run test:types && pnpm run test:vitest",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SEAPUNK/recaller.git"
},
"keywords": [
"retry",
"async",
"await",
"promise",
"backoff",
"exponential"
],
"author": "ivan k <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/SEAPUNK/recaller/issues"
},
"homepage": "https://github.com/SEAPUNK/recaller#readme",
"devDependencies": {
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.2.5",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]"
}