-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "@modernpoacher/hooks",
"version": "1.0.507",
"description": "Git Hooks",
"keywords": [
"git",
"hooks"
],
"main": "./index.mjs",
"type": "module",
"types": "./index.d.mts",
"author": {
"name": "Jonathan Perry for Modern Poacher Limited",
"email": "[email protected]",
"url": "https://modernpoacher.com"
},
"license": "ISC",
"engines": {
"node": ">=18.12.0"
},
"repository": {
"type": "git",
"url": "git://github.com/modernpoacher/hooks.git"
},
"homepage": "https://github.com/modernpoacher/hooks",
"bugs": {
"url": "https://github.com/modernpoacher/hooks/issues"
},
"scripts": {
"lint": "eslint . --ext .mjs,.cjs",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"dependencies": {
"debug": "^4.4.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.0",
"core-js": "^3.40.0",
"eslint": "8.57.1",
"eslint-config-standard": "^17.1.0",
"husky": "^9.1.7"
},
"imports": {
"#hooks/*": "./src/*.mjs"
}
}