argparse-ts
Version:
Modern CLI arguments parser for node.js
68 lines (67 loc) • 1.7 kB
JSON
{
"name": "argparse-ts",
"version": "0.9.0",
"description": "Modern CLI arguments parser for node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Smoren/argparse-ts.git"
},
"author": {
"name": "Smoren",
"email": "ofigate@gmail.com",
"url": "https://github.com/Smoren"
},
"homepage": "https://github.com/Smoren/argparse-ts#readme",
"bugs": {
"url": "https://github.com/Smoren/argparse-ts/issues"
},
"main": "./lib/index.js",
"module": "./es/index.js",
"scripts": {
"build": "npm run build:commonjs && npm run build:es",
"build:commonjs": "rimraf lib && tsc --downlevelIteration --target es5 --outDir lib --module commonjs --declaration",
"build:es": "rimraf es && tsc --target es6 --outDir es --module es6",
"test": "jest --coverage",
"jest": "jest",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepublishOnly": "npm run build",
"docs": "typedoc src/index.ts --navigation.includeCategories --out docs/api"
},
"files": [
"es",
"lib",
"src",
"tests"
],
"keywords": [
"cli",
"command-line",
"parser",
"argparse",
"argparser",
"argsparse",
"argsparser",
"option",
"args",
"command",
"arguments",
"node",
"typescipt"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.13.6",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"rimraf": "^4.4.0",
"ts-expect": "^1.1.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.3"
},
"types": "./lib/index.d.ts",
"jsnext:main": "./es/index.js",
"sideEffects": false,
"readme": "README.md"
}