-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "minus-h",
"version": "2.1.0",
"description": "Add help generation to APIs created with Node's util.parseArgs function",
"main": "lib/index.js",
"type": "module",
"scripts": {
"docs": "typedoc",
"pretest": "tsc",
"test": "c8 mocha",
"preci": "tsc --inlineSourceMap",
"ci": "c8 mocha",
"lint": "eslint .",
"build": "npm test && npm run lint && npm run docs && npm pack --dry-run"
},
"keywords": [
"parseArgs",
"node",
"util",
"help",
"-h",
"format",
"word-wrap"
],
"author": "Joe Hildebrand <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hildjj/minus-h.git"
},
"dependencies": {
"@cto.af/linewrap": "2.1.0"
},
"devDependencies": {
"@cto.af/eslint-config": "4.1.5",
"@types/node": "22.1.0",
"c8": "10.1.2",
"eslint": "9.8.0",
"mocha": "10.7.0",
"typedoc": "0.26.5",
"typescript": "5.5.4",
"typescript-eslint": "8.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}