You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.2 KiB
JSON
99 lines
2.2 KiB
JSON
{
|
|
"name": "jackspeak",
|
|
"version": "2.2.1",
|
|
"description": "A very strict and proper argument parser.",
|
|
"main": "./dist/cjs/index.js",
|
|
"module": "./dist/mjs/index.js",
|
|
"types": "./dist/mjs/index.js",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/mjs/index.d.ts",
|
|
"default": "./dist/mjs/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.ts",
|
|
"default": "./dist/cjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build-examples": "for i in examples/*.js ; do node $i -h > ${i/.js/.txt}; done",
|
|
"preversion": "npm test",
|
|
"postversion": "npm publish",
|
|
"prepublishOnly": "git push origin --follow-tags",
|
|
"prepare": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json && bash ./scripts/fixup.sh",
|
|
"pretest": "npm run prepare",
|
|
"presnap": "npm run prepare",
|
|
"test": "c8 tap",
|
|
"snap": "c8 tap",
|
|
"format": "prettier --write . --loglevel warn",
|
|
"typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
|
|
},
|
|
"license": "BlueOak-1.0.0",
|
|
"prettier": {
|
|
"semi": false,
|
|
"printWidth": 75,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"singleQuote": true,
|
|
"jsxSingleQuote": false,
|
|
"bracketSameLine": true,
|
|
"arrowParens": "avoid",
|
|
"endOfLine": "lf"
|
|
},
|
|
"tap": {
|
|
"coverage": false,
|
|
"node-arg": [
|
|
"--no-warnings",
|
|
"--loader",
|
|
"ts-node/esm"
|
|
],
|
|
"ts": false
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.11",
|
|
"@types/pkgjs__parseargs": "^0.10.0",
|
|
"@types/tap": "^15.0.8",
|
|
"c8": "^7.13.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"prettier": "^2.8.6",
|
|
"tap": "^16.3.4",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.23.28",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@isaacs/cliui": "^8.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/isaacs"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/isaacs/jackspeak.git"
|
|
},
|
|
"keywords": [
|
|
"argument",
|
|
"parser",
|
|
"args",
|
|
"option",
|
|
"flag",
|
|
"cli",
|
|
"command",
|
|
"line",
|
|
"parse",
|
|
"parsing"
|
|
],
|
|
"author": "Isaac Z. Schlueter <i@izs.me>",
|
|
"optionalDependencies": {
|
|
"@pkgjs/parseargs": "^0.11.0"
|
|
}
|
|
}
|