UNPKG

605 BJSONView Raw
1{
2 "name": "getopts",
3 "description": "Node.js CLI options parser.",
4 "version": "1.0.2",
5 "main": "index.js",
6 "license": "MIT",
7 "repository": "getopts/getopts",
8 "author": "Jorge Bucaran",
9 "files": ["index.js"],
10 "keywords": [
11 "cli",
12 "argv",
13 "cli-parser",
14 "getopts"
15 ],
16 "scripts": {
17 "test": "nyc -r lcov tape test/*.js && nyc report",
18 "release": "npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push origin master && git push --tags && npm publish"
19 },
20 "devDependencies": {
21 "nyc": "^11.2.1",
22 "tape": "^4.8.0"
23 }
24}