mirror of
https://github.com/giraffate/clippy-action.git
synced 2024-11-23 08:29:33 +01:00
1b10e7c6a6
Bumps [eslint](https://github.com/eslint/eslint) and [eslint-plugin-github](https://github.com/github/eslint-plugin-github). These dependencies needed to be updated together. Updates `eslint` from 7.32.0 to 8.35.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.32.0...v8.35.0) Updates `eslint-plugin-github` from 4.3.2 to 4.6.1 - [Release notes](https://github.com/github/eslint-plugin-github/releases) - [Commits](https://github.com/github/eslint-plugin-github/compare/v4.3.2...v4.6.1) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major - dependency-name: eslint-plugin-github dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "typescript-action",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "TypeScript template action",
|
|
"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",
|
|
"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",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "1.10.0",
|
|
"@actions/exec": "1.1.1",
|
|
"@actions/http-client": "2.0.1",
|
|
"@actions/tool-cache": "2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.11.0",
|
|
"@typescript-eslint/parser": "^4.33.0",
|
|
"@vercel/ncc": "^0.31.1",
|
|
"eslint": "^8.35.0",
|
|
"eslint-plugin-github": "^4.6.1",
|
|
"eslint-plugin-jest": "^25.3.2",
|
|
"jest": "^27.2.5",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "2.7.1",
|
|
"ts-jest": "^27.1.2",
|
|
"typescript": "^4.4.4"
|
|
}
|
|
}
|