-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "again-ts",
"version": "1.0.7",
"description": "Async function retrying written in typescript",
"author": "triplesun",
"license": "ISC",
"main": "build/index.js",
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"scripts": {
"test": "jest",
"build": "rimraf build && tsc",
"check": "biome check ./src",
"format": "biome format ./src --write",
"prepare": "husky",
"prepublishOnly": "pnpm run check && husky && jest && rimraf build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/triple-sun/again-ts.git"
},
"bugs": {
"url": "https://github.com/triple-sun/again-ts/issues"
},
"homepage": "https://github.com/triple-sun/again-ts#readme",
"keywords": [
"retry",
"try",
"try-again",
"utility",
"node",
"async",
"promise",
"retrier",
"typescript",
"retryify",
"again",
"repeat",
"retries"
],
"files": [
"build"
],
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched"
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}