async-pool/package.json
Rafael Xavier de Souza f81e56d5f0 1.2.0
2020-10-27 21:18:08 -03:00

43 lines
954 B
JSON

{
"name": "tiny-async-pool",
"version": "1.2.0",
"description": "Run multiple promise-returning & async functions with limited concurrency using native ES6/ES7",
"main": "dist/node.js",
"files": [
"LICENSE-MIT",
"dist",
"lib"
],
"scripts": {
"prettier": "prettier --write '{lib,test}/**/*.js'",
"test": "eslint src && NODE_ENV=development mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:rxaviers/async-pool.git"
},
"keywords": [
"race",
"concurrency",
"promise",
"async",
"es6",
"es7"
],
"author": "Rafael Xavier de Souza",
"license": "MIT",
"devDependencies": {
"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": {
"yaassertion": "^1.0.0",
"semver": "^5.5.0"
}
}