![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.14.16 to 14.14.19. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Xiang Dai <long0dai@foxmail.com> Co-authored-by: Xiang Dai <long0dai@foxmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
1.9 KiB
JSON
54 lines
1.9 KiB
JSON
{
|
|
"name": "golanci-lint-action",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "golangci-lint github action",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"prepare-setup-go": "cd node_modules/setup-go && npm run build",
|
|
"prepare-deps": "npm run prepare-setup-go",
|
|
"build": "tsc && ncc build -o dist/run/ src/main.ts && ncc build -o dist/post_run/ src/post_main.ts",
|
|
"watched_build_main": "tsc && ncc build -w -o dist/run/ src/main.ts",
|
|
"watched_build_post_main": "tsc && ncc build -w -o dist/post_run/ src/post_main.ts",
|
|
"type-check": "tsc",
|
|
"lint": "eslint --max-warnings 1 **/*.ts --cache",
|
|
"lint-fix": "eslint **/*.ts --cache --fix",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"all": "npm run prepare-deps && npm run build && npm run format-check && npm run lint",
|
|
"local": "npm run build && act -j test -b",
|
|
"local-full-version": "npm run build && act -j test-full-version -b"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/golangci/golangci-lint-action.git"
|
|
},
|
|
"author": "golangci",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^1.0.5",
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/github": "^4.0.0",
|
|
"@actions/tool-cache": "^1.6.1",
|
|
"@types/semver": "^7.3.4",
|
|
"@types/tmp": "^0.2.0",
|
|
"setup-go": "git+https://github.com/actions/setup-go.git#v2.1.3",
|
|
"tmp": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.14.19",
|
|
"@types/uuid": "^8.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
|
"@typescript-eslint/parser": "^2.34.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-prettier": "^6.15.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-prettier": "^3.3.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"prettier": "^2.2.1",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|