UNPKG

682 BJSONView Raw
1{
2 "name": "argparse",
3 "description": "CLI arguments parser. Native port of python's argparse.",
4 "version": "2.0.1",
5 "keywords": [
6 "cli",
7 "parser",
8 "argparse",
9 "option",
10 "args"
11 ],
12 "main": "argparse.js",
13 "files": [
14 "argparse.js",
15 "lib/"
16 ],
17 "license": "Python-2.0",
18 "repository": "nodeca/argparse",
19 "scripts": {
20 "lint": "eslint .",
21 "test": "npm run lint && nyc mocha",
22 "coverage": "npm run test && nyc report --reporter html"
23 },
24 "devDependencies": {
25 "@babel/eslint-parser": "^7.11.0",
26 "@babel/plugin-syntax-class-properties": "^7.10.4",
27 "eslint": "^7.5.0",
28 "mocha": "^8.0.1",
29 "nyc": "^15.1.0"
30 }
31}