This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "eslint-config-airbnb-typescript",
"version": "0.0.0-development",
"description": "Airbnb's ESLint config with TypeScript support",
"license": "MIT",
"author": "Matt Turnbull <[email protected]> (https://iamturns.com)",
"homepage": "https://github.com/iamturns/eslint-config-airbnb-typescript",
"repository": {
"type": "git",
"url": "https://github.com/iamturns/eslint-config-airbnb-typescript.git"
},
"bugs": {
"url": "https://github.com/iamturns/eslint-config-airbnb-typescript/issues"
},
"scripts": {
"pre-commit": "lint-staged",
"format": "run-s format:package format:prettier format:eslint",
"format:eslint": "eslint --fix ./ >/dev/null 2>&1 || true",
"format:package": "prettier-package-json --write",
"format:prettier": "prettier --write \"**/*.{js,json,md,yml}\" \".editorconfig\" \"LICENSE\"",
"lint": "eslint ./",
"prepare": "husky",
"validate": "npm run lint"
},
"dependencies": {
"eslint-config-airbnb-base": "^15.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"doctoc": "2.2.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"prettier-package-json": "2.8.0",
"typescript": "5.3.3"
},
"keywords": [
"airbnb",
"config",
"es2015",
"es2016",
"es2017",
"es2018",
"eslint",
"eslintconfig",
"javascript",
"styleguide",
"typescript"
]
}