forked from pozil/auto-assign-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
36
{
"name": "auto-assign-issue",
"version": "1.1.0",
"private": true,
"description": "GitHub action that auto-assigns issues to users",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**",
"prettier": "prettier --write \"**/*.{html,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{html,js,json,md,yaml,yml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pozil/auto-assign-issue.git"
},
"keywords": [
"github",
"action",
"issue",
"assign"
],
"author": "Philippe Ozil (pozil)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/pozil/auto-assign-issue/issues"
},
"homepage": "https://github.com/pozil/auto-assign-issue#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"prettier": "^2.4.1"
}
}