-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"name": "@josundt/eslint-config",
"version": "5.7.2",
"description": "ESLint ruleset with required plugins for josundt TypeScript projects",
"type": "module",
"exports": {
".": "./index.js",
"./ts-browser": "./ts-browser.js",
"./ts-jest-browser": "./ts-jest-browser.js",
"./ts-node": "./ts-node.js",
"./ts-jest-node": "./ts-jest-node.js"
},
"main": "index.js",
"engines": {
"node": "^20.9.0 || >=21.1.0"
},
"scripts": {
"lint": "echo \"No linting for this project\"",
"build": "echo \"No build for this project\"",
"test": "echo \"No tests for this project\""
},
"repository": {
"type": "git",
"url": "https://github.com/josundt/josundt-eslint-config.git"
},
"keywords": [
"eslint",
"eslintrc"
],
"author": {
"name": "Jørn Andre Sundt",
"email": "[email protected]"
},
"license": "ISC",
"files": [
"*.js",
"rules/**/*.js",
"utils/**/*.js"
],
"peerDependencies": {
"typescript": ">=5.7.2"
},
"dependencies": {
"@josundt/prettier-config": "^3.4.2",
"@eslint/js": "9.16.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"eslint": "9.16.0",
"eslint-formatter-visualstudio": "8.40.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.1"
},
"devDependencies": {
"@types/eslint__js": "8.42.3"
}
}