-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.57 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": "@enter-at/eslint-config-typescript-prettier",
"version": "1.9.38",
"description": "Enterat's ESLint config with TypeScript and Prettier support.",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"scripts": {
"test": "eslint --ext .ts test/",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/enter-at/eslint-config-typescript-prettier.git"
},
"keywords": [
"eslint",
"eslint-config",
"prettier",
"typescript"
],
"author": "Steffen Leistner",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com./enter-at/eslint-config-typescript-prettier/issues"
},
"homepage": "https://github.com./enter-at/eslint-config-typescript-prettier#readme",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"json5": "^2.2.3"
},
"peerDependencies": {
"eslint": "^8.22.0",
"prettier": "^3.0.0",
"typescript": "^4.7.4 || ^5.0.0"
},
"devDependencies": {
"eslint": "8.57.1",
"prettier": "3.5.3",
"typescript": "5.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}