-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@musement/eslint-plugin",
"version": "3.0.1",
"description": "Shared eslint config for musement's projects",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"scripts": {
"release": "standard-version -a"
},
"author": "Musement",
"contributors": [
"Przemysław Fałowski",
"Marco Ziliani <[email protected]>",
"Gabriele Fazio <[email protected]>"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/musement/eslint-plugin.git"
},
"bugs": {
"url": "https://github.com/musement/eslint-plugin/issues"
},
"dependencies": {
"@nuxt/eslint-config": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vue": "^8.7.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"husky": "^4.3.8",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"eslint": "^8.36.0",
"prettier": "^2.8.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"license": "ISC"
}