-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "eslint-formatter-git-log",
"description": "ESLint Formatter featuring Git Author, Date, and Hash",
"version": "0.6.4",
"author": "Jamie Mason (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/eslint-formatter-git-log/issues",
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@types/eslint": "8.4.1",
"@types/node": "17.0.31",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"eslint": "8.14.0",
"prettier": "2.6.2",
"typescript": "4.6.4"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"homepage": "https://github.com/JamieMason/eslint-formatter-git-log",
"keywords": [
"eslint",
"eslint-formatter",
"eslintformatter",
"formatter",
"git",
"git-log",
"lint",
"reporter",
"validate"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"eslint": ">=8.0.0"
},
"repository": "JamieMason/eslint-formatter-git-log",
"resolutions": {
"chalk": "4.1.2"
},
"scripts": {
"build": "rm -rf ./dist && tsc --project .",
"format": "yarn format:lint && yarn format:source",
"format:lint": "yarn lint --fix",
"format:source": "prettier --write .",
"lint": "eslint --ext .ts .",
"prepack": "yarn build"
}
}