{
"name": "cancellable-chain-of-promises",
"version": "0.2.0",
"description": "Library to write cancellable chain of Promises, using the This-Binding Syntax proposal.",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"files": [
"lib",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "babel -s -d lib src",
"eslint": "eslint .",
"mocha": "mocha --compilers js:babel-core/register test/*.js",
"prepublish": "npm run build",
"test": "npm run-script eslint && npm run-script mocha"
},
"repository": "Volune/cancellable-chain-of-promises",
"keywords": [
"cancellable",
"promise",
"abort",
"cancel"
],
"author": "Jeremy Judeaux <jeremy.judeaux@volune.net>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"must": "^0.13.2",
"must-sinon": "0.0.0",
"prex": "^0.2.0",
"sinon": "^1.17.7"
}
}
|