-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
41 lines (41 loc) · 1005 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
40
41
{
"name": "auto-author-assign",
"version": "2.0.0",
"private": true,
"description": "GitHub Actions: Automatically assign pull request authors",
"scripts": {
"build": "ncc build src/index.js",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toshimaru/auto-author-assign.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "toshimaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/toshimaru/auto-author-assign/issues"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/toshimaru/auto-author-assign#readme",
"funding": "https://github.com/sponsors/toshimaru",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "5.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.0",
"standard-version": "^9.5.0"
}
}