forked from rubensworks/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "@rubensworks/eslint-config",
"version": "2.0.0",
"description": "Personal eslint config",
"keywords": [
"eslint",
"eslintconfig"
],
"main": "index.js",
"repository": "[email protected]:rubensworks/eslint-config.git",
"author": "Ruben Taelman <[email protected]>",
"bugs": {
"url": "https://github.com/rubensworks/eslint-config/issues"
},
"homepage": "https://github.com/rubensworks/eslint-config#readme",
"license": "MIT",
"files": [
"index.js"
],
"dependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint-config-es": "4.2.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-extended": "0.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "37.0.1",
"eslint-plugin-unused-imports": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.3.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"typescript": "^5.0.0"
},
"scripts": {
"test": "echo \"NOOP\"",
"lint": "eslint . --ext .ts",
"build": "echo \"NOOP\"",
"version": "manual-git-changelog onversion"
},
"pre-commit": [
"lint"
]
}