-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 851 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
{
"name": "promise-paralleled",
"description": "Execute asynchronous task with promise by specifying the number of concurrency",
"version": "1.0.18",
"author": "tiger <tachiba@gmail.com> (https://github.com/t-tiger)",
"bugs": {
"url": "https://github.com/t-tiger/Promise-Paralleled/issues"
},
"devDependencies": {
"typescript": "^3.4.5"
},
"files": [
"dist"
],
"homepage": "https://github.com/t-tiger/Promise-Paralleled#readme",
"keywords": [
"Async",
"Async/Await",
"Await",
"Concurrent",
"Multiple",
"Parallel",
"Promise"
],
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/t-tiger/Promise-Paralleled.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build"
}
}