This repository was archived by the owner on Dec 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.69 KB
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
{
"name": "@nlib/eslint-config",
"publishConfig": {
"access": "public"
},
"version": "3.20.5",
"license": "Apache-2.0",
"author": {
"name": "Kei Ito",
"email": "kei.itof@gmail.com",
"url": "https://github.com/gjbkz"
},
"homepage": "https://github.com/nlibjs/eslint-config",
"repository": "https://github.com/nlibjs/eslint-config",
"type": "module",
"main": ".eslintrc.json",
"files": [
".eslintrc.json"
],
"scripts": {
"build": "run-s build:*",
"build:main": "node build.mjs",
"build:format": "prettier --write .eslintrc.json",
"test": "run-s build test:*",
"test:rules": "node test/rules.test.mjs",
"test:generator": "node test/generator.test.mjs",
"lint": "eslint --ext .mjs build.mjs test",
"version": "npx @nlib/changelog --output CHANGELOG.md && git add CHANGELOG.md"
},
"peerDependencies": {
"eslint": ">= 8"
},
"dependencies": {
"@nlib/eslint-plugin": "1.1.2",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.21.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0"
},
"devDependencies": {
"@nlib/changelog": "0.3.2",
"@nlib/githooks": "0.2.2",
"@nlib/lint-commit": "1.0.1",
"@types/eslint": "8.56.12",
"@types/node": "20.17.10",
"eslint": "8.57.1",
"lint-staged": "15.2.11",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"typescript": "5.7.2"
},
"ava": {
"files": [
"test/*.test.mjs"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.*(m|c)+(j|t)s*(x)": "eslint"
},
"renovate": {
"extends": [
"github>nlibjs/renovate-config"
]
}
}