-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.73 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
{
"name": "eslint-plugin-arrow-function-brace",
"description": "ESLint plugin that checks if the arrow function can remove the brace.",
"main": "lib/index.js",
"version": "v1.0.2",
"scripts": {
"test": "jest",
"build": "tsc"
},
"files": [
"README.md",
"package.json",
"lib"
],
"keywords": [
"eslint",
"eslint-plugin",
"arrow function",
"brace"
],
"author": "Wataruun",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/eslint": "^7.2.7",
"@types/node": "^14.14.35",
"eslint": "^7.22.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(src/__tests__/.*\\.test)\\.ts$",
"testPathIgnorePatterns": [
"/node_modules/",
"\\.d\\.ts$",
"lib/.*"
],
"moduleFileExtensions": [
"js",
"ts",
"json"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
],
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "[email protected]:hayawata3626/eslint-plugin-arrow-function-brace.git"
}
}