forked from iamturns/eslint-config-airbnb-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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",
"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"
},
"version": "0.0.0-development",
"main": "dist/eslint-config-airbnb-typescript.js",
"scripts": {
"pre-commit": "lint-staged",
"format": "run-s format:package format:prettier format:eslint",
"format:eslint": "eslint --cache --fix ./ >/dev/null 2>&1 || true",
"format:package": "prettier-package-json --write",
"format:prettier": "prettier --write \"**/*.{js,json,md,yml}\" \".editorconfig\" \"LICENSE\"",
"lint": "eslint --cache ./",
"validate": "npm run lint"
},
"dependencies": {
"@typescript-eslint/parser": "^3.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^3.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "3.1.0",
"doctoc": "1.4.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"husky": "4.2.5",
"lint-staged": "10.2.8",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"prettier-package-json": "2.1.3",
"typescript": "3.9.3"
},
"keywords": [
"airbnb",
"config",
"es2015",
"es2016",
"es2017",
"es2018",
"eslint",
"eslintconfig",
"javascript",
"styleguide",
"typescript"
]
}