-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 927 Bytes
/
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
{
"name": "eslint-config-hexo",
"version": "6.0.0",
"description": "ESLint config for Hexo projects",
"repository": "hexojs/eslint-config-hexo",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"eslint-config"
],
"main": "eslint.js",
"files": [
"eslint.js",
"test.js",
"ts.js",
"ts-test.js"
],
"exports": {
"./eslint": "./eslint.js",
"./test": "./test.js",
"./ts": "./ts.js",
"./ts-test": "./ts-test.js"
},
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (http://abnerchou.me)"
],
"license": "MIT",
"peerDependencies": {
"eslint": ">= 9.17.0"
},
"dependencies": {
"@eslint/js": "^9.17.0",
"eslint-plugin-n": "^17.15.1",
"globals": "^15.14.0",
"typescript-eslint": "^8.19.0",
"eslint-plugin-mocha": "^10.5.0"
},
"engines": {
"node": ">=18"
}
}