mirror of
https://github.com/jimeh/update-tags-action.git
synced 2026-02-19 01:26:40 +00:00
76 lines
2.4 KiB
JSON
76 lines
2.4 KiB
JSON
{
|
|
"name": "update-tags-action",
|
|
"version": "2.2.0",
|
|
"author": "jimeh",
|
|
"type": "module",
|
|
"private": true,
|
|
"homepage": "https://github.com/jimeh/update-tags-action",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jimeh/update-tags-action.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jimeh/update-tags-action/issues"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"github",
|
|
"git",
|
|
"tags",
|
|
"update"
|
|
],
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
},
|
|
"scripts": {
|
|
"all": "npx npm-run-all -s format:write lint test coverage update-readme package",
|
|
"bundle": "npx npm-run-all -s format:write package",
|
|
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
|
|
"format:check": "npx prettier --check .",
|
|
"format:write": "npx prettier --write .",
|
|
"licensed:cache": "bin/licensed cache",
|
|
"licensed:status": "bin/licensed status",
|
|
"lint": "npx eslint .",
|
|
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
"package:watch": "npm run package -- --watch",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
|
|
"ci-test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
|
|
"update-readme": "npx action-docs --update-readme && npx prettier --write README.md"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^6.0.1",
|
|
"csv-parse": "^6.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^2.0.0",
|
|
"@jest/globals": "^30.2.0",
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
"@typescript-eslint/parser": "^8.46.2",
|
|
"action-docs": "^2.5.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jest": "^29.2.1",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"jest": "^30.2.0",
|
|
"make-coverage-badge": "^1.2.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.6.2",
|
|
"prettier-eslint": "^16.4.2",
|
|
"rollup": "^4.53.3",
|
|
"ts-jest": "^29.4.5",
|
|
"ts-jest-resolver": "^2.0.1",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|