-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "eslint-formatter-github-actions",
"version": "1.1.0",
"description": "An Eslint formatter that prints warnings and errors compatible with Github actions file annotations.",
"main": "lib/eslint-formatter-github-actions.js",
"files": [
"lib",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "node build.mjs",
"cz": "cz",
"lint": "eslint --quiet .",
"prepublish": "npm run build",
"release": "HUSKY=0 standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-b-r-o-w-n/eslint-formatter-github-actions.git"
},
"keywords": [
"eslint",
"eslint-formatter",
"eslintformatter",
"lint",
"github",
"github-actions"
],
"author": "Andy Brown <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-b-r-o-w-n/eslint-formatter-github-actions/issues"
},
"homepage": "https://github.com/a-b-r-o-w-n/eslint-formatter-github-actions#readme",
"devDependencies": {
"@types/eslint": "^7.2.10",
"@types/fs-extra": "^9.0.11",
"@types/node": "^14.14.40",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"esbuild": "^0.11.11",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"standard-version": "^9.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}