-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
44
45
46
{
"name": "auto-author-assign",
"description": "GitHub Actions: Automatically assign pull request authors",
"version": "3.0.1",
"author": "toshimaru",
"type": "module",
"private": true,
"homepage": "https://github.com/toshimaru/auto-author-assign#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/toshimaru/auto-author-assign.git"
},
"bugs": {
"url": "https://github.com/toshimaru/auto-author-assign/issues"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.js",
"package:watch": "npm run package -- --watch"
},
"license": "MIT",
"funding": "https://github.com/sponsors/toshimaru",
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/github": "6.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.54.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
}
}