UNPKG

rtd-bot

Version:

An unofficial GitHub Action that helps reveiwing on Read the Docs

95 lines (94 loc) 2.27 kB
{ "name": "rtd-bot", "version": "2.0.30", "description": "An unofficial GitHub Action that helps reveiwing on Read the Docs", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build:action": "ncc build src/index.ts --source-map", "test": "jest", "postinstall": "npm run-script prepack", "prepack": "tsc", "all": "npm run build:action && npm test", "prepare": "husky install" }, "keywords": [ "github-actions", "readthedocs", "rtd" ], "author": "Kengo TODA", "license": "Apache-2.0", "dependencies": { "@actions/core": "^1.2.6", "@actions/github": "^5.0.0", "fetch-retry": "^5.0.0", "isomorphic-fetch": "^3.0.0" }, "engines": { "node": "^16.13.0" }, "files": [ "dist" ], "devDependencies": { "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@types/isomorphic-fetch": "0.0.36", "@types/node-fetch": "^3.0.3", "@vercel/ncc": "^0.27.0", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.0.0", "husky": "^8.0.1", "jest": "^27.0.5", "prettier": "^2.2.1", "pretty-quick": "^3.1.0", "semantic-release": "^19.0.2", "source-map-support": "^0.5.16", "ts-jest": "^27.0.3", "ts-node": "^10.0.0", "typescript": "^4.0.2" }, "overrides": { "minimist": ">=1.2.6", "npm": ">=8.11.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "repository": { "type": "git", "url": "https://github.com/KengoTODA/readthedocs-action.git" }, "release": { "branches": "main", "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github", [ "@semantic-release/exec", { "prepare": "npm run build:action" } ], [ "@semantic-release/git", { "assets": [ "dist", "package.json", "package-lock.json" ], "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" } ] ] }, "publishConfig": { "access": "public" } }