-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
41 lines (41 loc) · 969 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
39
40
41
{
"name": "tiny-async-pool",
"version": "2.1.0",
"description": "Run multiple promise-returning & async functions with limited concurrency using native ES9",
"main": "lib/es9.js",
"files": [
"LICENSE-MIT",
"lib"
],
"scripts": {
"prettier": "prettier --write '{lib,test}/**/*.js'",
"test": "eslint lib && NODE_ENV=development mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:rxaviers/async-pool.git"
},
"keywords": [
"race",
"concurrency",
"promise",
"async",
"async iterator",
"async iteration",
"async generator",
"es9"
],
"author": "Rafael Xavier de Souza",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"mocha": "^5.0.0",
"prettier": "^1.10.2"
},
"dependencies": {}
}