js-promisify
Version:
A simple utility to convert NodeJS async functions to native JS promises.
57 lines (56 loc) • 1.4 kB
JSON
{
"name": "js-promisify",
"description": "A simple utility to convert NodeJS async functions to native JS promises.",
"main": "index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"pre-commit": "npm test",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"test": "npm run lint && nyc mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/pensierinmusica/js-promisify.git"
},
"homepage": "https://github.com/pensierinmusica/js-promisify",
"bugs": {
"url": "https://github.com/pensierinmusica/js-promisify/issues"
},
"keywords": [
"promise",
"promises",
"es6",
"javascript",
"Node",
"async"
],
"author": "Alessandro Zanardi",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "mocha"
}
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.0",
"travis-deploy-once": "^5.0.0"
},
"version": "1.3.1"
}