package-options
Version:
The single point to load options for your node package
45 lines (44 loc) • 1.1 kB
JSON
{
"name": "package-options",
"version": "0.2.0",
"description": "The single point to load options for your node package",
"main": "src/index.js",
"scripts": {
"test": "humile",
"test:full": "npm test && npm run lint && tsc --noEmit",
"lint": "eslint \"src/**/*.js\" && tsc --noEmit",
"postversion": "git push && git push --tags",
"prepack": "npm run test:full",
"preversion": "npm run test:full"
},
"typings": "src/index.d.ts",
"repository": "megahertz/package-options",
"files": [
"src/*",
"!__specs__"
],
"keywords": [
"npm",
"package",
"options",
"config",
"cli",
"environment",
"rc",
"help"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/package-options/issues",
"homepage": "https://github.com/megahertz/package-options#readme",
"engines": {
"node": ">=8"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.18.0",
"humile": "^0.2.9",
"typescript": "^3.7.3"
}
}