-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "@firefoxic/eslint-config",
"description": "Shared config for eslint by firefoxic.",
"version": "5.0.0",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "[email protected]"
},
"homepage": "https://github.com/firefoxic/eslint-config#readme",
"bugs": {
"url": "https://github.com/firefoxic/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firefoxic/eslint-config.git"
},
"type": "module",
"engines": {
"node": "^20.13 || >=22.11"
},
"packageManager": "[email protected]",
"exports": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"./lib/index.d.ts",
"./lib/index.js"
],
"peerDependencies": {
"eslint": "^9.15.0"
},
"dependencies": {
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin-js": "^2.10.1",
"eslint-plugin-prefer-let": "^4.0.0",
"globals": "^15.12.0"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks || true",
"lint": "eslint",
"pretest": "pnpm lint",
"test": "node --test",
"preversion": "pnpm test",
"version": "update-changelog",
"postversion": "pnpm publish --provenance --access public --no-git-checks",
"postpublish": "git push --follow-tags"
},
"devDependencies": {
"@firefoxic/update-changelog": "^1.0.0",
"eslint": "^9.15.0"
},
"keywords": [
"config",
"eslint",
"javascript",
"js",
"lint",
"linter",
"linting"
]
}