-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "eslint-config-leadfisher",
"version": "1.3.0",
"description": "Leadfisher eslint rules",
"packageManager": "npm@9.6.4",
"main": "index.js",
"type": "commonjs",
"engines": {
"node": ">= 20"
},
"files": [
"./rules",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LeadFisherSolutions/eslint-config-leadfisher.git"
},
"scripts": {
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"test": "npm run -s lint"
},
"keywords": ["eslint", "eslint-config", "leadfisher", "nodejs", "javascript"],
"author": "Alexander Ivanov <sashapop101@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1"
},
"peerDependencies": {
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0"
}
}