-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.77 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
75
76
77
78
{
"name": "eslint-config-mingelz",
"version": "5.1.0",
"description": "A shared ESLint configuration with Chinese comments. 一份带有完整中文注释的 ESLint 规则。",
"keywords": [
"eslint",
"config",
"eslintconfig",
"eslint-config",
"linting",
"linter",
"linter-config",
"javascript",
"styleguide",
"style-guide",
"chinese",
"mandarin"
],
"homepage": "https://github.com/mingelz/eslint-config-mingelz",
"bugs": {
"url": "https://github.com/mingelz/eslint-config-mingelz/issues"
},
"license": "MIT",
"author": {
"name": "mingelz",
"email": "mingelz@gmail.com"
},
"files": [
"lib",
"rules"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:mingelz/eslint-config-mingelz.git"
},
"scripts": {
"lint": "NODE_ENV=production eslint --fix --report-unused-disable-directives index.js lib/ rules/"
},
"dependencies": {
"confusing-browser-globals": "^1.0.0",
"semver": "^7.3.0"
},
"peerDependencies": {
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-vue": "^7.9.0"
},
"peerDependenciesMeta": {
"eslint-plugin-import": {
"optional": true
},
"eslint-plugin-jsdoc": {
"optional": true
},
"eslint-plugin-node": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-vue": {
"optional": true
}
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-node": "^11.1.0"
},
"engines": {
"node": ">=10.12.0"
}
}