-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@kesills/eslint-config-airbnb-typescript",
"version": "19.0.0",
"description": "Airbnb's ESLint config with TypeScript support",
"keywords": [
"airbnb",
"config",
"eslint",
"eslintconfig",
"typescript"
],
"homepage": "https://github.com/Kenneth-Sills/eslint-config-airbnb-typescript",
"bugs": {
"url": "https://github.com/Kenneth-Sills/eslint-config-airbnb-typescript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kenneth-Sills/eslint-config-airbnb-typescript.git"
},
"license": "MIT",
"author": "Kenneth Sills <[email protected]>",
"main": "index.js",
"files": [
"NOTICE",
"lib",
"base.js"
],
"scripts": {
"lint": "run-s lint:style lint:source lint:types",
"lint:fix": "run-s lint:style:fix lint:source:fix",
"lint:source": "eslint .",
"lint:source:fix": "eslint --fix .",
"lint:style": "prettier --check .",
"lint:style:fix": "prettier --write .",
"lint:types": "tsc",
"prepare": "husky"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"release": {
"branches": [
"main"
],
"parserOpts": {
"referenceActions": [
"R4ND0M"
],
"issuePrefixes": [
"Closes #",
"Close #"
]
},
"preset": "conventionalcommits"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.7",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"husky": "9.1.5",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"prettier-plugin-packagejson": "^2.5.2",
"semantic-release": "^24.1.0",
"typescript": "5.3.3"
},
"peerDependencies": {
"@stylistic/eslint-plugin": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"typescript": "*"
},
"peerDependenciesMeta": {
"eslint-config-airbnb": {
"optional": true
},
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}