-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "repo-file-sync-action",
"version": "1.8.1",
"description": "GitHub Action to keep files like Action workflows or entire directories in sync between multiple repositories.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src",
"start": "node src/index.js",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redocly/repo-file-sync-action.git"
},
"keywords": [
"sync",
"file-sync",
"workflow-sync",
"github-workflow",
"github-actions",
"github-action-workflow-sync"
],
"author": "Redocly LLC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/redocly/repo-file-sync-action/issues"
},
"homepage": "https://github.com/marketplace/actions/repo-file-sync-action",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.0.0",
"@octokit/plugin-throttling": "^3.5.2",
"@putout/git-status-porcelain": "^1.1.0",
"action-input-parser": "^1.2.2",
"fs-extra": "^10.0.0",
"js-yaml": "^4.1.0",
"node-readfiles": "^0.2.0"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^7.27.0"
}
}