forked from Nicktho/batch-promises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 940 Bytes
/
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
{
"name": "@nordic-ui/batch-promises",
"version": "0.1.0",
"description": "Easily batch promises",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/__tests__/*"
],
"scripts": {
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nicktho/batch-promises.git"
},
"keywords": [
"batch",
"promises"
],
"author": "Nick Matenaar <[email protected]> (http://nickmatenaar.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nicktho/batch-promises/issues"
},
"homepage": "https://github.com/Nicktho/batch-promises#readme",
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.7.6",
"@vitest/coverage-v8": "2.1.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}