-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.36 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "eslint-config-teppeis",
"description": "ESLint config set for me!",
"version": "19.1.2",
"author": "Teppei Sato <teppeis@gmail.com>",
"publishConfig": {
"provenance": true
},
"engines": {
"node": "^18.18.2 || >=20.9.0"
},
"type": "module",
"files": [
"bin",
"dist",
"templates"
],
"bin": {
"eslint-config-teppeis": "bin/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./configs": {
"import": "./dist/configs/index.js"
},
"./configs/*": {
"import": "./dist/configs/*.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"init:examples": "./examples/init.sh",
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint --max-warnings 0 .",
"lint:prettier": "prettier --check .",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "npm-run-all -l -c --aggregate-output clean build -p lint:* test:*",
"test:examples": "./examples/lint-all.sh",
"test:unit": "mocha test"
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.17.0",
"deepmerge": "^4.3.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"typescript-eslint": "^8.18.2"
},
"devDependencies": {
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.19.70",
"@types/react": "^19.0.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^10.4.5",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "^9.17.0",
"prettier": "^3.4.2"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
}
},
"homepage": "https://github.com/teppeis/eslint-config-teppeis",
"repository": "https://github.com/teppeis/eslint-config-teppeis",
"bugs": {
"url": "https://github.com/teppeis/eslint-config-teppeis"
},
"keywords": [
"eslint",
"eslint-config",
"prettier",
"typescript"
],
"license": "MIT"
}