Test/node_modules/es6-promise-pool/package.json
2026-04-09 22:54:00 +07:00

87 lines
2 KiB
JSON

{
"name": "es6-promise-pool",
"version": "2.5.0",
"description": "Runs Promises in a pool that limits their concurrency.",
"author": {
"name": "Tim De Pauw",
"url": "https://tmdpw.eu"
},
"main": "es6-promise-pool.js",
"typings": "es6-promise-pool.d.ts",
"keywords": [
"promise",
"promises",
"promises-a",
"promises-aplus",
"future",
"futures",
"deferred",
"deferreds",
"generator",
"generators",
"async",
"await",
"flow control",
"pool",
"queue",
"throttle",
"es6",
"browser",
"node"
],
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"console-stamp": "^0.2.5",
"coveralls": "^2.13.0",
"dirty-chai": "^1.2.2",
"es6-promise": "^4.1.0",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.13.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.2.0",
"standard": "^10.0.2"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "npm run test:lint && npm run test:node && npm run test:browser",
"test:lint": "standard",
"test:node": "nyc mocha test.js",
"test:browser": "karma start",
"test:ci": "npm run test:ci:node && npm run test:browser && npm run test:ci:report",
"test:ci:node": "nyc mocha --reporter mocha-junit-reporter test.js",
"test:ci:report": "nyc report --reporter text-lcov | coveralls"
},
"files": [
"es6-promise-pool.js",
"es6-promise-pool.d.ts"
],
"repository": "timdp/es6-promise-pool",
"bugs": "https://github.com/timdp/es6-promise-pool/issues",
"license": "MIT",
"standard": {
"ignore": [
"bower_components/**"
],
"globals": [
"define",
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach",
"chai",
"chaiAsPromised"
]
}
}