Files
massarg/package.json
2021-07-19 02:17:05 +03:00

30 lines
846 B
JSON

{
"name": "massarg",
"version": "0.1.0-pre.18",
"description": "Flexible, powerful, and simple command/argument parser for CLI applications",
"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/chalk": "^2.2.0",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/node": "^16.3.2",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"chalk": "^4.1.1",
"lodash": "^4.17.21"
}
}