@king011/flags
Version:
deno and nodeje command args parser
48 lines • 1.47 kB
JSON
{
"name": "@king011/flags",
"version": "0.0.1",
"description": "deno and nodeje command args parser",
"scripts": {
"deno":"node deno.js",
"docs": "typedoc --plugin none",
"test": "qunit lib/es5/index_test.js && qunit lib/es6/index_test.js && qunit lib/es2022/index_test.js",
"bt": "tsc -t es2022 --outDir lib/es2022 && qunit lib/es2022/index_test.js",
"es5": "tsc -t es5 --outDir lib/es5 --downlevelIteration",
"es6": "tsc -t es6 --outDir lib/es6",
"es2022": "tsc -t es2022 --outDir lib/es2022",
"es": "tsc -t es6 -m es6 --outDir es/es6 && tsc -t es2020 -m es2020 --outDir es/es2020",
"js": "tsc -t es5 --outDir lib/es5 --downlevelIteration && tsc -t es6 --outDir lib/es6 && tsc -t es2022 --outDir lib/es2022",
"build": "npm run es && npm run js && npm run deno"
},
"main": "lib/es6/mod.js",
"repository": {
"type": "git",
"url": "git+https://github.com/powerpuffpenguin/ts-flags.git"
},
"author": "zuiwuchang@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/powerpuffpenguin/ts-flags/issues"
},
"homepage": "https://github.com/powerpuffpenguin/ts-flags#readme",
"devDependencies": {
"@types/qunit": "^2.19.3",
"qunit": "^2.19.3",
"typedoc": "^0.23.20"
},
"keywords": [
"flags",
"cli",
"command",
"command-line",
"command-flags",
"deno",
"deno-cli",
"deno-flags",
"deno-command"
],
"files": [
"lib",
"es"
]
}