promise-results
Version:
Promise all results of a collection of promises whether they are resolved OR rejected.
41 lines (40 loc) • 962 B
JSON
{
"name": "promise-results",
"version": "0.6.2",
"description": "Promise all results of a collection of promises whether they are resolved OR rejected.",
"main": "promise-results.js",
"scripts": {
"lint": "eslint *.js test/*.js",
"test": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/robcolburn/promise-results"
},
"keywords": [
"promises",
"promise",
"always"
],
"author": "Rob Colburn",
"license": "MIT",
"bugs": {
"url": "https://github.com/robcolburn/promise-results/issues"
},
"homepage": "https://github.com/robcolburn/promise-results",
"devDependencies": {
"chai": "^2.1.2",
"chai-as-promised": "^4.3.0",
"es6-promise": "^2.0.1",
"eslint": "^0.20.0",
"ghooks": "^0.3.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}