-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
66
67
68
{
"name": "@beuluis/eslint-config",
"version": "2.0.1",
"description": "Shared eslint config for my projects",
"main": "./eslintrc.js",
"files": [
"**/*.js",
"configurations"
],
"publishConfig": {
"access": "public"
},
"engines": {
"npm": ">8.3"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/eslint-config.git"
},
"author": "Luis Beu <[email protected]> (https://luisbeu.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beuterei/eslint-config/issues"
},
"homepage": "https://github.com/Beuterei/eslint-config#readme",
"dependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"eslint-config-canonical": "^41.1.7",
"eslint-plugin-anti-trojan-source": "^1.1.1",
"eslint-plugin-compat": "^4.1.4",
"eslint-plugin-i18next": "6.0.3",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-security-node": "^1.1.1",
"eslint-plugin-testing-library": "^6.0.1"
},
"peerDependencies": {
"eslint": "^8"
},
"devDependencies": {
"@beuluis/hook-cli": "1.2.1",
"eslint": "8.47.0",
"husky": "8.0.3",
"lint-staged": "14.0.1"
},
"overrides": {
"eslint-config-canonical": {
"eslint-plugin-import": "npm:[email protected]"
}
},
"keywords": [
"eslint",
"eslint-config",
"eslint-shareable-config",
"config",
"linting"
],
"lint-staged": {
"*.{js,json}": [
"eslint"
]
}
}