-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
105 lines (105 loc) · 2.99 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "zsh-history-enquirer",
"version": "1.3.1",
"description": "zsh history search plugin by enquirer",
"repository": "zthxxx/zsh-history-enquirer",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "index.js",
"bin": {
"zsh-history-enquirer": "bin/index.js"
},
"scripts": {
"clean": "rimraf dist public coverage debug.log",
"test": "jest tests",
"test:zsh": "tests/zsh-widget.test.zsh",
"build": "npm-run-all clean build:rollup build:site",
"build:rollup": "rollup -c",
"build:dev": "npm run clean && rollup -c -w",
"docs": "eloc open intro.md -i 'images/**' --progress",
"build:site": "eloc build intro.md -i '{CNAME,images/**}' --title 'zsh-history-enquirer' --progress",
"record": "scripts/record.zsh",
"render": "scripts/render-record.zsh",
"preinstall": "command -v zsh || (npm run warn:zsh && exit 1)",
"postinstall": "env zsh -il scripts/postinstall.zsh",
"postuninstall": "npm run rm-plugin:config && npm run rm-plugin:file",
"postpublish": "npm run clean",
"warn:zsh": "echo '\\n\\n!! this is a plugin for zsh, please install zsh at first \\n\\n' >&2",
"benchmark": "scripts/benchmark.zsh",
"rm-plugin:config": "perl -i -pe 's/.*zsh-history-enquirer.*//gms' ${HOME}/.zshrc",
"rm-plugin:file": "rm -rf ${ZSH_CUSTOM:-${ZSH}/custom}/plugins/zsh-history-enquirer"
},
"keywords": [
"zsh",
"zsh-history",
"history",
"search",
"history-search",
"history-enhance",
"plugin",
"zsh-plugin",
"enquirer",
"inquirer"
],
"author": "zthxxx",
"license": "MIT",
"bugs": {
"url": "https://github.com/zthxxx/zsh-history-enquirer/issues"
},
"homepage": "https://github.com/zthxxx/zsh-history-enquirer",
"engines": {
"node": ">=10.0.0"
},
"files": [
"README.md",
"src",
"scripts",
"bin",
"dist",
"index.js",
"init.zsh",
"zsh-history-enquirer.plugin.zsh"
],
"devDependencies": {
"@commitlint/cli": "8.3.6",
"@commitlint/config-conventional": "8.3.6",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@rollup/plugin-strip": "2.1.0",
"@rollup/plugin-typescript": "8.3.0",
"@types/jest": "27.4.0",
"@types/node": "16.11.19",
"@types/signale": "1.4.4",
"builtin-modules": "3.2.0",
"eloc": "1.3.1",
"enquirer": "2.3.6",
"execa": "5.1.1",
"husky": "3.1.0",
"jest": "27.4.7",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.64.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-progress": "1.1.2",
"signale": "1.4.0",
"svg-term-cli": "2.1.1",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}