Files
update-tags-action/package.json

79 lines
2.4 KiB
JSON

{
"name": "update-tags-action",
"version": "2.3.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": "^2.0.1",
"@actions/github": "^6.0.1",
"csv-parse": "^6.1.0",
"handlebars": "^4.7.8",
"semver": "^7.7.3"
},
"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": "^25.0.3",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.46.2",
"action-docs": "^2.5.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.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.7.4",
"prettier-eslint": "^16.4.2",
"rollup": "^4.55.1",
"ts-jest": "^29.4.6",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.9.3"
}
}