-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 KB
/
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
38
39
40
41
42
43
44
45
46
{
"name": "arge",
"version": "1.5.2",
"description": "A simple utility to parse command line arguments and flags",
"keywords": [
"argv",
"argparse",
"cli",
"command line",
"flags",
"parse",
"process.argv",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/adhamu/arge"
},
"license": "MIT",
"author": "Amit Dhamu <[email protected]>",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "npx rimraf dist",
"build": "node esbuild.config.js build",
"postbuild": "tsc --project tsconfig.build.json",
"lint": "eslint .",
"test": "jest --colors",
"test:coverage": "yarn test --coverage",
"type": "tsc --noEmit"
},
"devDependencies": {
"@adhamu/zero": "^6.1.0",
"@swc/core": "^1.3.89",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.0",
"esbuild": "^0.19.3",
"jest": "^29.7.0",
"typescript": "^5.2.2"
}
}