-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "@jeliasson/husky-hooks",
"version": "0.7.0",
"license": "MIT",
"description": "Increase the developer experience and consistancy by providing a set of hooks that can be opted-in the development lifecycle.",
"author": "jeliasson",
"homepage": "https://github.com/jeliasson/npm-husky-hooks",
"keywords": [
"husky",
"hooks"
],
"bugs": {
"url": "https://github.com/jeliasson/npm-husky-hooks/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeliasson/npm-husky-hooks.git"
},
"dependencies": {
"commander": "^11.0.0",
"husky": "^9.0.0",
"node-fetch": "^2.6.7",
"zod": "^3.17.3"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/node": "20.17.13",
"@types/node-fetch": "2.6.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-import-helpers": "1.3.1",
"jest": "28.1.3",
"prettier": "3.4.2",
"ts-jest": "28.0.8",
"tsc-watch": "6.2.1",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18.18.0",
"yarn": ">=1.15"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"husky-hooks.config.default.js"
],
"bin": {
"husky-hooks": "lib/bin.js"
},
"scripts": {
"dev": "tsc-watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx --fix .",
"test": "jest --config jestconfig.json",
"preinstall": "echo \"Error: no preinstall specified\" && exit 0",
"install": "echo \"Error: no install specified\" && exit 0",
"postinstall": "echo \"Error: no postinstall specified\" && exit 0",
"prepare": "npm run build",
"prepublishOnly": "npm run lint"
}
}