-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "@flaminc/eslint-plugin",
"description": "Base Eslint configurations",
"version": "0.0.0-development",
"author": "capitN.flam",
"scripts": {
"build": "tsc",
"clean": "rimraf --glob dist flaminc-eslint-plugin-*.tgz",
"format": "prettier --write .",
"lint": "prettier --check .",
"pre-commit": "lint-staged",
"prepare": "husky",
"semantic-release": "semantic-release",
"type-check": "tsc --pretty --noEmit"
},
"bugs": "https://github.com/capitnflam/eslint-plugin/issues",
"dependencies": {
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-no-unsanitized": "4.0.2",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "2.1.1",
"eslint-plugin-sonarjs": "0.24.0",
"eslint-plugin-unicorn": "51.0.1",
"eslint-plugin-xss": "0.1.12"
},
"devDependencies": {
"@commitlint/cli": "19.2.0",
"@commitlint/config-conventional": "19.1.0",
"@commitlint/types": "19.0.3",
"@types/eslint": "8.56.5",
"@types/node": "20.11.28",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"semantic-release": "23.0.3",
"semantic-release-npm-github-publish": "1.5.5",
"syncpack": "12.3.0",
"typescript": "5.4.2"
},
"files": [
"package.json",
"dist"
],
"homepage": "https://github.com/capitnflam/eslint-plugin#readme",
"keywords": [
"eslint",
"plugin"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"eslint": ">=8",
"react": ">=16.8"
},
"publishConfig": {
"access": "public"
},
"repository": "capitnflam/eslint-plugin"
}