package.json
{
"name": "redolent",
"version": "2.0.5",
"description": "Simple promisify with sane defaults, works on node 0.10 if you provide custom Promise through options",
"repository": "hybridables/redolent",
"author": "Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)",
"precommit.silent": true,
"jsnext:main": "dist/redolent.es.js",
"module": "dist/redolent.es.js",
"main": "dist/redolent.common.js",
"license": "MIT",
"scripts": {
"lint": "standard index.js test.js --fix --verbose",
"test": "npm-run-all -s lint test:*",
"test:api": "nyc --reporter lcov node test.js",
"test:report": "nyc report",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"git": "npm-run-all -s git:*",
"git:add": "git add --all",
"git:cz": "git-cz",
"commit": "npm-run-all -s build test git",
"build": "npm-run-all -s build:*",
"build:clean": "rimraf dist",
"build:dist": "rollup -c",
"build:testing": "rollup -c --environment NODE_TESTING",
"build:show": "ls -al dist"
},
"dependencies": {
"native-or-another": "^5.0.1"
},
"devDependencies": {
"arrify": "^1.0.1",
"commitizen": "~2.7.0",
"cz-conventional-changelog": "1.1.5",
"extend-shallow": "^2.0.1",
"is-async-function": "^1.2.3",
"mukla": "^0.4.9",
"npm-run-all": "~3.1.2",
"nyc": "^10.1.2",
"pinkie": "^2.0.4",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"rollup": "^0.41.5",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"semver": "^5.3.0",
"sliced": "^1.0.1",
"standard": "^10.0.0",
"standard-version": "^4.0.0"
},
"files": [
"index.js",
"dist/"
],
"keywords": [
"async",
"async-await",
"asynchronous",
"await",
"callback",
"defaults",
"minimal",
"native",
"native-promise",
"promise",
"promisify",
"sane",
"simple",
"sync",
"tiny"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"statements": 100,
"functions": 100,
"branches": 100,
"lines": 100
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"minibase",
"try-catch-core",
"always-promise",
"native-promise",
"relike-value",
"letta",
"always-thunk",
"dush",
"arr-includes"
],
"highlight": "always-done"
},
"lint": {
"reflinks": true
},
"reflinks": [
"always-done",
"async-done",
"base",
"bluebird",
"charlike",
"co",
"commitizen",
"dezalgo",
"is-async-function",
"once",
"pinkie",
"relike",
"standard-version",
"verb",
"verb-generate-readme"
]
}
}