mirror of
https://github.com/actions/typescript-action.git
synced 2025-04-06 15:29:47 +00:00
Bumps the npm-development group with 5 updates: | Package | From | To | | --- | --- | --- | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.10.4` | `20.10.5` | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.13.2` | `6.14.0` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.13.2` | `6.14.0` | | [eslint](https://github.com/eslint/eslint) | `8.55.0` | `8.56.0` | | [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) | `2.10.0` | `2.11.1` | Updates `@types/node` from 20.10.4 to 20.10.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@typescript-eslint/eslint-plugin` from 6.13.2 to 6.14.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.14.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.13.2 to 6.14.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.14.0/packages/parser) Updates `eslint` from 8.55.0 to 8.56.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/v8.55.0...v8.56.0) Updates `eslint-plugin-jsonc` from 2.10.0 to 2.11.1 - [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases) - [Changelog](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/CHANGELOG.md) - [Commits](https://github.com/ota-meshi/eslint-plugin-jsonc/compare/v2.10.0...v2.11.1) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-development - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development - dependency-name: eslint-plugin-jsonc dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-development ... Signed-off-by: dependabot[bot] <support@github.com>
90 lines
2.2 KiB
JSON
90 lines
2.2 KiB
JSON
{
|
|
"name": "typescript-action",
|
|
"description": "GitHub Actions TypeScript template",
|
|
"version": "0.0.0",
|
|
"author": "",
|
|
"private": true,
|
|
"homepage": "https://github.com/actions/typescript-action",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/actions/typescript-action/issues"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"bundle": "npm run format:write && npm run package",
|
|
"ci-test": "jest",
|
|
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
|
|
"format:write": "prettier --write **/*.ts",
|
|
"format:check": "prettier --check **/*.ts",
|
|
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
|
|
"package": "ncc build src/index.ts --license licenses.txt",
|
|
"package:watch": "npm run package -- --watch",
|
|
"test": "jest",
|
|
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"
|
|
},
|
|
"license": "MIT",
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"verbose": true,
|
|
"clearMocks": true,
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/",
|
|
"/dist/"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"coverageReporters": [
|
|
"json-summary",
|
|
"text",
|
|
"lcov"
|
|
],
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"./src/**"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.10.5",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-github": "^4.10.1",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"eslint-plugin-jsonc": "^2.11.1",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"jest": "^29.7.0",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"prettier": "^3.1.1",
|
|
"prettier-eslint": "^16.1.2",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|