-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.93 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
54
55
56
57
58
59
60
61
{
"name": "capped-promise",
"version": "1.0.4",
"description": "Provides Promise.all and Promise.allSettled variants that limit the number of simultaneously pending promises.",
"keywords": [
"all",
"allsettled",
"capped",
"limited",
"promise",
"typescript"
],
"homepage": "https://github.com/andreashuber69/capped-promise/blob/develop/README.md#----capped-promise",
"repository": {
"type": "git",
"url": "git+https://github.com/andreashuber69/capped-promise.git"
},
"bugs": {
"url": "https://github.com/andreashuber69/capped-promise/issues"
},
"license": "MIT",
"author": {
"name": "Andreas Huber"
},
"engines": {
"node": ">=12.22"
},
"main": "dist/index.js",
"files": [
"/dist/",
"!/**/*.map",
"/*.md"
],
"scripts": {
"prelint": "cspell '**' && markdownlint '**/*.md'",
"lint": "eslint",
"build": "tsc && vite build",
"test-no-coverage": "vitest --run",
"test": "vitest --run --coverage",
"show-coverage": "vite 'coverage/lcov-report' --logLevel error --open",
"ci": "npm run lint && npm run build && npm test",
"preversion": "git checkout develop && git push && git pull",
"version": "git flow release start v`cat package.json | jq -r '.version' && git stash push >/dev/null 2>&1` && git stash pop",
"postversion": "git commit -a -m \"chore: start release v`cat package.json | jq -r '.version'`\"",
"finish-release": "git flow release finish -p -m \"chore: finish release\" v`cat package.json | jq -r '.version'`"
},
"devDependencies": {
"@andreashuber69/eslint-config": "^2.1.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node-fetch": "^2.6.12",
"@vitest/coverage-istanbul": "^3.0.3",
"coveralls": "^3.1.1",
"cspell": "^8.17.2",
"markdownlint-cli": "^0.43.0",
"node-fetch": "^2.7.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.3"
}
}