-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "change-milestone-action",
"version": "1.0.0",
"description": "GutHub Action to change a Milestone",
"keywords": [
"GitHub",
"Action",
"Milestone"
],
"main": "index.js",
"scripts": {
"all": "npm run fmt && npm run build",
"build": "ncc build index.js --license licenses.txt",
"fmt": "prettier --write index.js package.json action.yml .github/dependabot.yml .github/workflows/*.yml",
"check": "prettier --check index.js package.json action.yml .github/dependabot.yml .github/workflows/*.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sv-tools/change-milestone-action.git"
},
"author": "Sergey Vilgelm <sergey@vilgelm.com> (https://vilgelm.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sv-tools/change-milestone-action/issues"
},
"homepage": "https://github.com/sv-tools/change-milestone-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"prettier": "^3.5.3"
}
}