2021-01-08 20:47:49 +00:00
|
|
|
{
|
2021-01-10 15:59:11 +00:00
|
|
|
"name": "repo-file-sync-action",
|
2021-08-02 00:32:29 +00:00
|
|
|
"version": "1.9.3",
|
2021-01-09 00:26:35 +00:00
|
|
|
"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",
|
2021-01-09 00:17:36 +00:00
|
|
|
"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": [
|
2021-01-09 00:26:35 +00:00
|
|
|
"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": {
|
2021-06-11 09:32:46 +00:00
|
|
|
"@actions/core": "^1.4.0",
|
2021-05-29 11:04:05 +00:00
|
|
|
"@actions/github": "^5.0.0",
|
2021-06-28 22:07:07 +00:00
|
|
|
"@octokit/plugin-throttling": "^3.5.1",
|
2021-01-08 20:47:49 +00:00
|
|
|
"@putout/git-status-porcelain": "^1.1.0",
|
2021-07-26 22:06:10 +00:00
|
|
|
"action-input-parser": "^1.2.10",
|
2021-05-05 07:42:20 +00:00
|
|
|
"fs-extra": "^10.0.0",
|
2021-07-14 14:29:21 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"node-readfiles": "^0.2.0"
|
2021-01-08 20:47:49 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-04-16 11:40:02 +00:00
|
|
|
"@betahuhn/config": "^1.1.0",
|
2021-07-16 22:05:09 +00:00
|
|
|
"@vercel/ncc": "^0.29.0",
|
2021-07-19 22:07:12 +00:00
|
|
|
"eslint": "^7.31.0"
|
2021-01-08 20:47:49 +00:00
|
|
|
}
|
|
|
|
}
|