-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "simple-async-pool",
"version": "0.0.4",
"description": "Easy to use, dependency free and typesafe concurrent pool of async and promise returning functions",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "tests"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.187.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^10.17.51",
"chai": "^4.3.0",
"mocha": "^8.2.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"scripts": {
"test": "mocha --require ts-node/register --extensions ts 'tests/**/*.ts'",
"build": "tsc -p tsconfig.build.json",
"release": "npm run build && cp package.json dist && cp README.md dist && npm publish ./dist"
},
"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"
}