-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.46 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
{
"name": "@beuluis/hook-cli",
"version": "1.2.1",
"description": "A small hook cli that can be used with for example husky",
"bin": {
"hook-cli": "./dist/index.js",
"@beuluis/hook-cli": "./dist/index.js"
},
"main": "dist",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "npm run build",
"build": "tsc --build",
"hook-cli": "ts-node src/index.ts",
"test": "npm run hook-cli -- --help",
"lint": "eslint .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/hook-cli.git"
},
"author": "Luis Beu <[email protected]> (https://luisbeu.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beuterei/hook-cli/issues"
},
"homepage": "https://github.com/Beuterei/hook-cli#readme",
"dependencies": {
"console-log-colors": "^0.2.3",
"console-table-printer": "^2.11.0",
"listr": "^0.14.3",
"yargs": "^17.5.1"
},
"devDependencies": {
"@beuluis/eslint-config": "2.0.1",
"@beuluis/hook-cli": "1.1.3",
"@types/listr": "0.14.4",
"@types/node": "18.7.18",
"@types/yargs": "17.0.12",
"eslint": "8.23.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"ts-node": "10.9.1",
"tslib": "2.4.0",
"typescript": "4.8.3"
},
"keywords": [
"cli",
"hooks",
"husky",
"husky-hooks"
],
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint"
]
}
}