-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 938 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "massarg",
"version": "1.0.7-pre.1",
"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 <[email protected]>",
"license": "Apache",
"scripts": {
"clean": "rm -rf build",
"build": "yarn clean && tsc -p tsconfig.build.json && cp package.json README.md build",
"develop": "tsc --watch",
"sample": "node build/sample.js",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.11",
"jest": "^27.4.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.1.0",
"typescript": "^4.5.2"
},
"dependencies": {
"chalk": "^4.1.2",
"lodash": "^4.17.21"
}
}