-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "@jenssimon/eslint-config-base",
"version": "0.0.0-development",
"description": "A shareable ESLint configurations",
"main": "index.js",
"author": "Jens Simon <https://github.com/jenssimon>",
"keywords": [
"eslint",
"eslintconfig"
],
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/eslint-config-base"
},
"license": "MIT",
"files": [
"/index.js"
],
"scripts": {
"lint": "eslint ./",
"commit": "cz",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-import-esm": "^2.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^7.0.0",
"eslint-plugin-sonarjs": "^3.0.0",
"eslint-plugin-unicorn": "^56.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"semantic-release": "^24.0.0"
},
"peerDependencies": {
"eslint": "^7.32.0 || ^8.2.0 || ^9.0.0"
},
"packageManager": "yarn@4.6.0",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
}
}