-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "simple-async-pool",
"version": "0.0.7",
"description": "Easy to use, dependency free and typesafe concurrent pool of async and promise returning functions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "tests"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^2.0.0-beta.4",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^20.19.9",
"chai": "^5.2.1",
"husky": "^9.1.7",
"mocha": "^11.7.1",
"oxlint": "^1.9.0",
"tsl": "^1.0.22",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
},
"scripts": {
"test": "mocha --require tsx 'tests/**/*.ts'",
"lint": "oxlint 'src/**/*.ts' 'tests/**/*.ts' && tsl -p tsconfig.json",
"build": "tsc -p tsconfig.build.json",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notanengineercom/simple-async-pool.git"
},
"keywords": [
"async",
"promise",
"pool",
"concurrency",
"iterator",
"async iterator",
"typesafe",
"typescript",
"no dependencies",
"dependency free"
],
"author": "Enrique Pöhlmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/notanengineercom/simple-async-pool/issues"
},
"homepage": "https://github.com/notanengineercom/simple-async-pool#readme"
}