conditional-promise
Version:
Yet another Promise with extended interface
53 lines (52 loc) • 1.44 kB
JSON
{
"name": "conditional-promise",
"amdName": "conditional-promise",
"version": "1.0.1",
"description": "Yet another Promise with extended interface",
"jsnext:main": "src/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"test": "eslint src test && npm run build && mocha --compilers js:babel-register test/**/*.js",
"rollup:cjs": "rollup -c rollup.config.js -m -f cjs -n $npm_package_amdName $npm_package_jsnext_main -o $npm_package_main",
"build": "npm run rollup:cjs",
"release": "npm run build -s && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"browser": true,
"mocha": true,
"es6": true
},
"globals": {
"expect": true
}
},
"keywords": [
"Alternative",
"Promise"
],
"author": "mikhail.angelov@gmail.com",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0"
}
}