forked from iamturns/eslint-config-airbnb-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "eslint-config-airbnb-typescript",
"version": "0.0.0-development",
"description": "Airbnb's ESLint config with TypeScript support",
"license": "MIT",
"author": "Matt Turnbull <matt@iamturns.com> (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 install",
"validate": "npm run lint"
},
"dependencies": {
"eslint-config-airbnb-base": "^15.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"doctoc": "2.1.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"husky": "7.0.4",
"lint-staged": "12.0.2",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"prettier-package-json": "2.6.0",
"typescript": "4.4.4"
},
"keywords": [
"airbnb",
"config",
"es2015",
"es2016",
"es2017",
"es2018",
"eslint",
"eslintconfig",
"javascript",
"styleguide",
"typescript"
]
}