-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.75 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
69
70
71
72
73
74
{
"name": "@mulekick/eslint-config-muleslint",
"version": "2.1.0",
"description": "Mulekicks's base JS / TS / React / Node ESLint config, following my personal standards 😁",
"type": "module",
"main": "eslint.config.js",
"scripts": {
"test": "cd sample && npm i && test $(npx eslint script.ts --quiet --format ../formatter.js) -eq 15 && rm -rf node_modules package-lock.json && exit 0 || rm -rf node_modules package-lock.json && exit 1",
"postpublish": "git add . && git commit -m \"$npm_package_name: version $npm_package_version published on $(date +%F\\ %r)\" && git push -u origin master"
},
"exports": {
".": "./eslint.config.js",
"./rules/core.disable.problems": "./rules/core.disable.problems.js",
"./rules/core.override.problems": "./rules/core.override.problems.js",
"./rules/core.override.suggestions": "./rules/core.override.suggestions.js",
"./rules/core.override.formatting": "./rules/core.override.formatting.js",
"./rules/node.disable.problems": "./rules/node.disable.problems.js",
"./rules/node.override.problems": "./rules/node.override.problems.js",
"./rules/node.override.suggestions": "./rules/node.override.suggestions.js",
"./rules/typescript.override.strict": "./rules/typescript.override.strict.js",
"./package.json": "./package.json"
},
"dependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-security": "^3.0.1",
"typescript-eslint": "^8.12.2"
},
"peerDependencies": {
"@types/node": "^22.6.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.1",
"globals": "^13.19.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.2"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"javascript",
"typescript",
"react",
"node",
"es6",
"esm",
"strict mode"
],
"engines": {
"node": ">=v20.17.0",
"npm": ">=10.8.3"
},
"os": [
"linux"
],
"author": "mulekick <moolekick@gmail.com> (https://github.com/mulekick)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mulekick/muleslint.git"
},
"bugs": {
"url": "https://github.com/mulekick/muleslint/issues"
},
"homepage": "https://github.com/mulekick/muleslint"
}