-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 736 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 736 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
{
"name": "ts-async-kit",
"version": "0.1.4",
"description": "A TS kit to deal with async operations, loops, retries.. and so on!",
"private": false,
"repository": "https://github.com/NicolasLopes7/ts-async-kit",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"ci": "pnpm build && pnpm test",
"test": "vitest"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"keywords": [
"typescript",
"async",
"promise",
"async-loop",
"async-retry"
],
"author": "Nicolas Lopes",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
}
}