-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "eslint-config-egg",
"version": "14.0.0",
"engines": {
"node": ">= 18.19.0"
},
"description": "Node.js Style Guide for EggJS",
"main": "index",
"files": [
".eslintrc",
"index.js",
"legacy.js",
"typescript.js",
"lib"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint-plugin-eggache": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-node": "^11.1.0"
},
"devDependencies": {
"coffee": "^5.4.0",
"egg-bin": "6",
"eslint": "^8.3.0",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/eggjs/eslint-config-egg"
},
"homepage": "https://github.com/eggjs/eslint-config-egg",
"author": "popomore <sakura9515@gmail.com>",
"scripts": {
"lint": "eslint test/*.test.js lib *.js --fix",
"test": "egg-bin test --ts false",
"ci": "npm run lint && egg-bin cov",
"contributor": "git-contributor"
}
}