repo-file-sync-action/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

2021-01-08 20:47:49 +00:00
{
2021-01-10 15:59:11 +00:00
"name": "repo-file-sync-action",
2022-10-24 16:30:57 +00:00
"version": "1.17.22",
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
2021-01-08 20:47:49 +00:00
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src",
"start": "node src/index.js",
2021-01-08 20:47:49 +00:00
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
2021-01-10 15:59:11 +00:00
"url": "git+https://github.com/betahuhn/repo-file-sync-action.git"
2021-01-08 20:47:49 +00:00
},
"keywords": [
"sync",
"file-sync",
"workflow-sync",
"github-workflow",
"github-actions",
"github-action-workflow-sync"
2021-01-08 20:47:49 +00:00
],
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"bugs": {
2021-01-10 15:59:11 +00:00
"url": "https://github.com/betahuhn/repo-file-sync-action/issues"
2021-01-08 20:47:49 +00:00
},
2021-05-05 07:42:20 +00:00
"homepage": "https://github.com/marketplace/actions/repo-file-sync-action",
2021-01-08 20:47:49 +00:00
"dependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^5.0.3",
"@octokit/plugin-throttling": "^3.6.2",
2021-01-08 20:47:49 +00:00
"@putout/git-status-porcelain": "^1.1.0",
"action-input-parser": "^1.2.33",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
2022-06-07 08:54:41 +00:00
"node-readfiles": "0.2.0"
2021-01-08 20:47:49 +00:00
},
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@octokit/core": "^3.6.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0"
2021-01-08 20:47:49 +00:00
}
}