optioner
Version:
Process and validate options for your module.
47 lines (46 loc) • 1.51 kB
JSON
{
"name": "optioner",
"version": "5.0.1",
"description": "Process and validate options for your module.",
"main": "optioner.js",
"scripts": {
"test": "lab -P test -v -t 100 -I BigUint64Array,BigInt64Array,BigInt,URL,URLSearchParams",
"coveralls": "lab -s -P test -r lcov | coveralls",
"prettier": "prettier --write *.js lib/*.js test/*.js",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"reset": "npm run clean && npm i && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/optioner.git"
},
"keywords": [
"options",
"optioner",
"validate",
"merge"
],
"author": "Richard Rodger richardrodger.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjrodger/optioner/issues"
},
"homepage": "https://github.com/rjrodger/optioner",
"dependencies": {
"@hapi/hoek": "^9.0.3",
"@hapi/joi": "^17.1.0"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/lab": "^22.0.3",
"coveralls": "^3.0.9",
"prettier": "^1.19.1"
},
"files": [
"README.md",
"LICENSE",
"optioner.js"
]
}