-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (46 loc) · 1.15 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
{
"name" : "eslint-config-coremail",
"description" : "Javascript Standard Style - ESLint Shareable Config for coremail.cn",
"version" : "1.0.2",
"author" : {
"name" : "William Leung",
"email" : "[email protected]"
},
"type" : "module",
"keywords" : [
"code linter",
"code sytle",
"code checker",
"eslint",
"coremail"
],
"repository" : {
"type" : "git",
"url" : "https://github.com/Mailtech/eslint-config-coremail.git"
},
"license" : "MIT",
"main" : "config/index.js",
"exports" : {
"." : "./config/index.js",
"./package.json" : "./package.json"
},
"files" : [
"config/*"
],
"scripts" : {
"test" : "eslint ."
},
"peerDependencies" : {
"eslint" : "^9.13.0",
"globals" : "*"
},
"devDependencies" : {
"eslint" : "~9.13.0"
},
"dependencies" : {
"eslint-plugin-import" : "^2.31.0",
"eslint-plugin-n" : "^17.11.1",
"eslint-plugin-promise" : "^7.1.0",
"@stylistic/eslint-plugin" : "^2.9.0"
}
}