-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "command-line-usage",
"author": "Lloyd Brookes <[email protected]>",
"version": "7.0.3",
"description": "Generates command-line usage information",
"repository": "https://github.com/75lb/command-line-usage",
"license": "MIT",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"files": [
"lib",
"index.js",
"dist"
],
"keywords": [
"terminal",
"command line",
"usage",
"generator"
],
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"docs": "jsdoc2md --no-gfm index.js lib/**/*.js > doc/api.md; echo",
"test": "npm run dist && npm run test:ci",
"test:ci": "test-runner test/*.js test/*.cjs",
"examples": "for FILE in example/*.js; do printf \"\n\n======== $FILE ========\n\n\"; node $FILE; done",
"dist": "rollup -c"
},
"dependencies": {
"array-back": "^6.2.2",
"chalk-template": "^0.4.0",
"table-layout": "^4.1.0",
"typical": "^7.1.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"jsdoc-to-markdown": "^8.0.1",
"rollup": "^4.18.1",
"test-runner": "^0.10.1"
},
"standard": {
"ignore": [
"example",
"dist"
]
}
}