-
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.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 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-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"name": "ketargs",
"version": "1.0.3",
"description": "Converts object properties into CLI-style flags and parameters",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.json",
"test": "jest",
"release": "npm run build && standard-version",
"release:first": "npm run build && standard-version --skip.bump",
"release:soft": "npm run build && standard-version --skip.bump --skip.commit --skip.tag"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolx-dev/ketargs#readme"
},
"keywords": [
"CLI",
"object",
"converter",
"mustargs"
],
"author": "William Manco",
"license": "MIT",
"bugs": {
"url": "https://github.com/toolx-dev/ketargs/issues"
},
"homepage": "https://github.com/toolx-dev/ketargs#readme"
}