Files
massarg/package.json
2021-08-09 16:23:36 +03:00

38 lines
955 B
JSON

{
"name": "massarg",
"version": "1.0.2",
"description": "Flexible, powerful, and simple command/argument parser for CLI applications",
"keywords": [
"shell",
"cli",
"parser",
"typescript",
"args",
"command-line"
],
"main": "index.js",
"repository": "https://github.com/chenasraf/massarg.git",
"author": "Chen Asraf <chenasrafil@gmail.com>",
"license": "Apache",
"scripts": {
"clean": "rm -rf build",
"build": "echo $(pwd); yarn clean && tsc -p tsconfig.build.json && cp package.json README.md src/*.d.ts build",
"develop": "tsc --watch",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^16.3.2",
"jest": "^27.0.6",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"chalk": "^4.1.1",
"lodash": "^4.17.21"
}
}