-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
59
60
61
62
63
64
{
"name": "command-line-publish",
"version": "2.0.0",
"description": "Convert `command-line-usage` JSON or JavaScript ESM into HTML or SVG files",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"bin": {
"clp": "./bin/clp.js",
"command-line-publish": "./bin/command-line-publish.js"
},
"scripts": {
"prepublishOnly": "pnpm i",
"eslint": "eslint .",
"lint": "npm run eslint",
"help": "./bin/clp.js --help",
"v": "./bin/clp.js --version",
"build-cli-html": "./bin/clp.js --format=html --config=\"./src/optionDefinitions.js\" --target=\"cli.html\"",
"build-cli-svg": "./bin/clp.js --format=svg --config=\"./src/optionDefinitions.js\" --target=\"cli.svg\"",
"build-cli": "npm run build-cli-svg && npm run build-cli-html",
"test": "npm run eslint && npm run build-cli-html && npm run build-cli-svg && npm run help && npm run v"
},
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"keywords": [
"argv",
"parse",
"argument",
"args",
"option",
"options",
"cli",
"command",
"line",
"docs",
"documentation",
"command-line-args",
"command-line-usage"
],
"bugs": "https://github.com/brettz9/command-line-publish/issues",
"homepage": "https://github.com/brettz9/command-line-publish",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/brettz9/command-line-publish"
},
"dependencies": {
"ansi-to-html": "github:brettz9/ansi-to-html#css-publish",
"ansi-to-svg": "^1.4.3",
"command-line-basics": "^2.0.1",
"command-line-usage": "^7.0.3",
"node-alias": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"eslint": "^9.11.1",
"eslint-config-ash-nazg": "^36.17.1"
}
}