forked from Tradeshift/action-golangci-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "action-golangci-lint",
"version": "0.0.0",
"private": true,
"description": "Run golangci-lint with reviewdog",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt -o dist/ src/main.ts",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"golangci-lint",
"reviewdog"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/cache": "3.0.4",
"@actions/core": "1.9.1",
"@actions/exec": "1.1.1",
"@actions/http-client": "2.0.1",
"@actions/tool-cache": "2.0.1",
"semver": "7.3.7"
},
"devDependencies": {
"@types/jest": "29.0.3",
"@types/node": "16.11.60",
"@types/semver": "7.3.12",
"@typescript-eslint/parser": "5.38.0",
"@vercel/ncc": "0.34.0",
"eslint": "8.24.0",
"eslint-plugin-github": "4.3.7",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.9.0",
"jest": "29.0.3",
"jest-circus": "29.0.3",
"js-yaml": "4.1.0",
"prettier": "2.7.1",
"ts-jest": "29.0.1",
"typescript": "4.8.3"
}
}