-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "@wfcd/eslint-config",
"version": "1.6.3",
"description": "Shared eslint configuration for Warframe Community Developers",
"keywords": [
"eslint",
"eslintconfig",
"javascript",
"styleguide"
],
"homepage": "https://github.com/WFCD/eslint-config#readme",
"bugs": {
"url": "https://github.com/WFCD/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WFCD/eslint-config.git"
},
"license": "MIT",
"author": "TobiTenno <[email protected]>",
"exports": {
".": "./configs/.eslintrc.js",
"./esm": "./configs/esm.js",
"./prettier": "./configs/prettier.config.js",
"./typescript": "./configs/typescript.js",
"./strict-jsdoc": "./configs/strict-jsdoc.js",
"./strict-esm-jsdoc": "./configs/strict-esm-jsdoc.js"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "npm run lint"
},
"babel": {
"plugins": [
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-private-methods"
],
"presets": [
"@babel/preset-env"
]
},
"prettier": "./configs/prettier.config.js",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"peerDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/plugin-syntax-import-assertions": "^7.24.1",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-private-methods": "^7.24.1",
"@babel/preset-env": "^7.24.5",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"engines": {
"npm": ">=7"
},
"eslint": {
"extends": "./configs/.eslintrc.js"
}
}