-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
70 lines (70 loc) · 1.55 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
{
"name": "lint-prepush",
"version": "3.0.1",
"description": "Run linters on committed files in a Branch🔬",
"author": "“Theenadayalan” <“puduvai.theena@gmail.com”>",
"license": "MIT",
"type": "module",
"bin": {
"lint-prepush": "./dist/lint-prepush.js"
},
"scripts": {
"lint": "node_modules/.bin/eslint",
"lint:fix": "yarn lint --fix",
"build": "tsup",
"test": "mocha tests/",
"prepare": "husky"
},
"lint-prepush": {
"base": "develop",
"tasks": {
"*.js": [
"node_modules/.bin/eslint"
]
}
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"chai": "^5.1.0",
"eslint": "^9.1.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.5",
"mocha": "^10.4.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.4",
"dedent": "^1.5.3",
"execa": "^7.2.0",
"file-system-cache": "^2.4.7",
"listr": "^0.14.3",
"log-symbols": "^6.0.0",
"micromatch": "^4.0.5",
"node-which": "^1.0.0",
"npm-which": "^3.0.1"
},
"engines": {
"node": ">=18.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/theenadayalank/lint-prepush.git"
},
"bugs": {
"url": "https://github.com/theenadayalank/lint-prepush/issues"
},
"homepage": "https://github.com/theenadayalank/lint-prepush",
"keywords": [
"lint",
"lint-prepush",
"prepush",
"husky",
"linter",
"git",
"hooks"
]
}