-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"devDependencies": {
"standard": "^17.1.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"name": "mustargs",
"version": "1.0.8",
"description": "A Minimal CLI parser with array and nested object support for simple JS object conversion.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.json",
"test": "jest",
"lint": "standard",
"release": "standard-version",
"release:soft": "standard-version --skip.bump --skip.commit --skip.tag"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williammanco/mustargs.git"
},
"keywords": [
"CLI",
"parser",
"yargs"
],
"author": "William Manco",
"license": "MIT",
"bugs": {
"url": "https://github.com/williammanco/mustargs/issues"
},
"homepage": "https://github.com/williammanco/mustargs#readme"
}