-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 878 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 878 Bytes
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
{
"name": "eslint-config-bitauth",
"version": "5.0.0",
"description": "eslint configuration for bitauth projects",
"main": "index.cjs",
"license": "MIT",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=6",
"@typescript-eslint/parser": ">=6",
"eslint": ">=8",
"eslint-config-prettier": ">=9",
"eslint-plugin-eslint-comments": ">=3",
"eslint-plugin-functional": ">=6",
"eslint-plugin-import": ">=2",
"eslint-plugin-tsdoc": ">=0.2",
"typescript": ">=5"
},
"scripts": {
"release": "standard-version"
},
"keywords": [
"eslint",
"eslintconfig"
],
"devDependencies": {
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"files": [
"index.cjs",
"CHANGELOG.md",
"readme.md"
],
"packageManager": "yarn@4.0.2"
}