-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1003 Bytes
/
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
{
"name": "10up/action-repo-automator",
"version": "2.1.3",
"description": "GitHub Action to automate some common repository operations and validate PR description, changelog and credits.",
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"homepage": "https://github.com/10up/action-repo-automator#readme",
"bugs": {
"url": "https://github.com/10up/action-repo-automator/issues"
},
"license": "MIT",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:10up/action-repo-automator.git"
},
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist",
"all": "npm run lint && npm run prepare"
},
"dependencies": {
"@actions/core": "^1.11.0",
"@actions/github": "^6.0.0",
"@octokit/action": "^7.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"eslint": "^8.54.0"
}
}