forked from mklabs/tabtab
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "mklabs",
"name": "@pnpm/tabtab",
"description": "tab completion helpers, for node cli programs. Inspired by npm completion.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "c8 mocha --timeout 5000",
"typecheck": "pnpm run build && tsc -p test --noEmit",
"build": "tsc -p lib",
"prepublishOnly": "pnpm run build",
"mocha": "mocha --timeout 5000",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"coverage-html": "npm run mocha && c8 report --reporter=html && serve coverage",
"eslint": "eslint lib/ test/",
"watch": "npm-watch",
"readme": "remark readme.md --use toc --output",
"changelog": "auto-changelog",
"api": "for file in `echo index.js installer.js prompt.js`; do jsdoc2md lib/$file > api/$file.md; done",
"docs": "npm run api && npm run readme && npm run changelog"
},
"watch": {
"test": "{lib,test}/**/*.js"
},
"devDependencies": {
"auto-changelog": "^1.16.4",
"c8": "^3.5.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-mklabs": "^1.0.9",
"inquirer-test": "^2.0.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^7.2.0",
"npm-watch": "^0.4.0",
"remark-cli": "^5.0.0",
"remark-toc": "^5.1.1",
"serve": "^10.1.2",
"typescript": "^5.3.3",
"@types/mocha": "^7.0.0",
"@types/node": "^20.11.13"
},
"license": "MIT",
"keywords": [
"terminal",
"tab",
"unix",
"console",
"complete",
"completion"
],
"repository": {
"type": "git",
"url": "https://github.com/pnpm/tabtab.git"
},
"dependencies": {
"debug": "^4.3.1",
"enquirer": "^2.3.6",
"minimist": "^1.2.5",
"untildify": "^4.0.0"
},
"auto-changelog": {
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false,
"ignoreCommitPattern": "changelog|readme|^test"
},
"version": "0.5.4",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}