forked from yargs/cliui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.39 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
{
"name": "@topcli/cliui",
"version": "1.1.0",
"description": "easily create complex multi-column command-line-interfaces",
"keywords": [
"cli",
"command-line",
"layout",
"design",
"console",
"wrap",
"table"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/cliui.git"
},
"license": "ISC",
"author": "Ben Coe <[email protected]>",
"type": "module",
"main": "./index.js",
"files": [
"build",
"index.js",
"!*.d.ts"
],
"scripts": {
"build": "tsc",
"coverage": "c8 report --check-coverage",
"lint": "gts lint **/*.ts",
"lint:fix": "npm run lint --fix",
"postest": "check",
"precompile": "rimraf build",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "c8 mocha ./test/cliui.test.js"
},
"dependencies": {
"@topcli/wcwidth": "^1.0.0",
"strip-ansi": "^6.0.1",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@types/node": "^16.16.0",
"@typescript-eslint/eslint-plugin": "^4.7.2",
"@typescript-eslint/parser": "^4.7.2",
"c8": "^7.12.0",
"chai": "^4.3.0",
"chalk": "^5.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"gts": "^3.0.0",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=16.16"
}
}