-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
{
"name": "@adamhamlin/eslint-config",
"version": "1.4.1",
"description": "Easy ESLint & Prettier config for TypeScript projects",
"main": "index.js",
"scripts": {
"_lint": "eslint --fix",
"_lint:check": "eslint",
"_format": " prettier --write --ignore-unknown",
"_format:check": "prettier --check --ignore-unknown",
"fix": "npm run _lint . && npm run _format .",
"check": "npm run _lint:check . && npm run _format:check .",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": "npm run _lint -- --cache",
"*": "npm run _format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamhamlin/eslint-config.git"
},
"keywords": [
"lint",
"config",
"eslint",
"eslintconfig",
"prettier",
"format"
],
"author": "Adam C. Hamlin <achamlin@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/adamhamlin/eslint-config/issues"
},
"homepage": "https://github.com/adamhamlin/eslint-config#readme",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-adamhamlin": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-adamhamlin": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}