-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "argmate",
"version": "0.8.1",
"author": "Mathias Wulff",
"description": "CLI parameter parsing. Zero dependencies. Fast. Convenient features for better DX",
"license": "CC-BY-SA-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasrw/argmate.git"
},
"bugs": {
"url": "https://github.com/mathiasrw/argmate/issues"
},
"homepage": "https://github.com/mathiasrw/argmate#readme",
"keywords": [
"CLI",
"argument",
"parser",
"command-line",
"arg",
"args",
"argv",
"parse",
"flags",
"options",
"mri",
"yargs",
"meow"
],
"module": "dist/argMate.js",
"type": "module",
"types": "src/types.d.ts",
"scripts": {
"prebuild": "rm -fr dist/",
"build": "bun build --target bun src/argMate.ts src/argMateLite.ts src/argEngine.ts src/argEngineLite.ts --outdir dist/ --minify ",
"test": "yarn test-only && yarn build && yarn test-bundle",
"test-only": "bun test --bail",
"test-bundle": "sh test/test.bundle.sh",
"test-ci": "yarn test-format && yarn test && yarn test-cov",
"test-cov": "bun test --coverage --bail",
"test-perf-cli": "yarn test && cd bench/ && sh test-cli.sh",
"test-perf-js": "yarn test && cd bench/ && sh test-js.sh",
"test-format": "prettier --list-different . || (echo 'Please correct file formatting using `yarn format` and try again.' && exit 1)",
"format": "prettier --write .",
"release": "yarn version",
"prerelease": "yarn && yarn format && yarn test",
"postrelease": "npm publish && git push && git push --tags && echo \"Successfully released version $npm_package_version\"",
"prepare": "husky"
},
"dependencies": {},
"devDependencies": {
"bun-types": "1.1.34",
"columnify": "^1.6.0",
"husky": "^9.1.4",
"prettier": "3.3.3",
"rexreplace": "^7.1.3"
}
}