-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
68
69
70
71
72
{
"name": "@open-xamu-co/eslint-config",
"version": "0.0.1",
"description": "Xamu shared eslint config",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xamu-co/eslint.git"
},
"bugs": {
"url": "https://github.com/xamu-co/eslint/issues"
},
"homepage": "https://github.com/xamu-co/eslint#readme",
"keywords": [
"eslint",
"lint",
"linter",
"typescript"
],
"author": "@xamu-co",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.19.0",
"yarn": ">=1.22.4"
},
"scripts": {
"lint": "prettier . --check --ignore-unknown",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^3.0.0",
"semantic-release": "^17.1.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=5",
"@typescript-eslint/parser": ">=5",
"eslint": ">=8",
"eslint-config-prettier": ">=8",
"eslint-import-resolver-typescript": ">=3",
"eslint-plugin-import": ">=2",
"eslint-plugin-prettier": ">=5",
"prettier": ">=3",
"typescript": ">=5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn check --integrity && lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"prettier --write"
]
}
}