forked from varunsridharan/action-github-workflow-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "action-github-workflow-sync",
"version": "1.0.0",
"description": "Github Action To Sync Github Action's Workflow Files Across Repositories",
"main": "src/index.js",
"scripts": {
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt ",
"prepare-git": "ncc build src/index.js -o dist --source-map --license licenses.txt && git add -f ./dist/** && git commit -m \"Updated\" && git push "
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "Varun Sridharan <[email protected]> (https://varunsridharan.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/github": "^6.0.0",
"@octokit/core": "^5.1.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.3",
"actions-js-toolkit": "^0.0.15"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}