-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "eslint-config-metarhia",
"version": "9.1.1",
"author": "Alexey Orlenko <[email protected]>",
"license": "MIT",
"description": "ESLint config for Metarhia projects",
"keywords": [
"eslint",
"eslintconfig",
"lint",
"linter",
"config",
"preset",
"metarhia"
],
"main": "index.js",
"files": [
"rules/"
],
"engines": {
"node": "18 || 20 || 21 || 22 || 23"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/eslint-config-metarhia.git"
},
"bugs": {
"url": "https://github.com/metarhia/eslint-config-metarhia/issues"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"scripts": {
"test": "npm run -s lint",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"dependencies": {
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}