-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "@foxy.io/eslint-config",
"version": "1.0.0",
"description": "Shared ESLint configuration for Foxy projects.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Foxy/foxy-eslint-config.git"
},
"author": "Foxy.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/Foxy/foxy-eslint-config/issues"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"homepage": "https://github.com/Foxy/foxy-eslint-config#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-lit-a11y": "^1.0.1",
"eslint-plugin-sort-class-members": "^1.8.0",
"eslint-plugin-typescript-sort-keys": "^1.5.0"
},
"peerDependencies": {
"eslint": ">= 7",
"prettier": ">= 2",
"typescript": ">= 4"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"semantic-release": "^17.2.2"
},
"release": {
"branches": ["main"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}