-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.7 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
{
"name": "@pixi/eslint-config",
"version": "6.0.0",
"description": "ESLint config for PixiJS plugin creators",
"exports": {
".": "./index.mjs"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/eslint-config.git"
},
"keywords": [
"pixi.js",
"pixijs",
"eslint-config"
],
"author": "Shukant K. Pal <[email protected]>",
"contributors": [
"Matt Karl <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pixijs/eslint-config/issues"
},
"homepage": "https://github.com/pixijs/eslint-config#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint -c index.mjs . --max-warnings 0",
"lintfix": "npm run lint -- --fix",
"test": "DEBUG=eslint:cli-engine npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"clean-package": {
"indent": 2,
"remove": [
"eslintConfig",
"devDependencies",
"scripts",
"clean-package"
]
},
"eslintConfig": {
"extends": [
"./index.mjs"
]
},
"dependencies": {
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.11.0",
"eslint": ">=9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.13.0",
"typescript-eslint": "^8.17.0"
},
"devDependencies": {
"clean-package": "^2.2.0",
"eslint": ">=9",
"typescript": ">=5"
},
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=5"
},
"files": [
"index.mjs"
]
}