-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "command-line-documentation",
"version": "1.0.0-alpha.9",
"description": "Generates Markdown \"user guide\" based off CLI spec compatible with command-line-args and command-line-usage.",
"main": "dist/command-line-documentation.js",
"scripts": {
"build": "make",
"lint": "make lint",
"lint:fix": "make lint-fix",
"test": "make test",
"prepack": "make build",
"preversion": "npm test && make lint",
"qa": "make qa"
},
"bin": {
"cld": "./dist/command-line-documentation-exec.js"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [],
"author": "Zane Rockenbaugh <[email protected]>",
"license": "Apache-2.0",
"repository": "git+ssh://[email protected]/liquid-labs/command-line-documentation.git",
"bugs": {
"url": "https://github.com/liquid-labs/command-line-documentation/issues"
},
"homepage": "https://github.com/liquid-labs/command-line-documentation#readme",
"devDependencies": {
"@liquid-labs/sdlc-resource-babel-and-rollup": "^1.0.0-alpha.5",
"@liquid-labs/sdlc-resource-eslint": "^1.0.0-alpha.2",
"@liquid-labs/sdlc-resource-jest": "^1.0.0-alpha.5"
},
"dependencies": {
"command-line-args": "^5.2.1",
"js-yaml": "^4.1.0"
},
"_comply": {
"orgKey": "@liquid-labs"
}
}