-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "eslint-rule-extender",
"version": "0.0.1",
"description": "Utility to extend existing ESLint rules",
"license": "MIT",
"author": "Kai Cataldo <[email protected]>",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kaicataldo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaicataldo/eslint-rule-extender.git"
},
"bugs": {
"url": "https://github.com/kaicataldo/eslint-rule-extender/issues"
},
"homepage": "https://github.com/kaicataldo/eslint-rule-extender#readme",
"keywords": [
"eslint",
"custom",
"rule",
"rules",
"plugin",
"plugins"
],
"engines": {
"node": ">=10"
},
"main": "lib/index.js",
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint .",
"format": "prettier '**/*.js' --write",
"test": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"jest": "^26.5.3",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0"
}
}