forked from timheuer/issue-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 957 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 957 Bytes
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": "issue-notifier",
"version": "1.0.0",
"description": "Automates sending a notification upon labeling of an issue",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timheuer/issue-notifier.git"
},
"keywords": [
"GitHub",
"Actions",
"Issues"
],
"author": "@timheuer",
"license": "MIT",
"bugs": {
"url": "https://github.com/timheuer/issue-notifier/issues"
},
"homepage": "https://github.com/timheuer/issue-notifier#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^1.1.0",
"@sendgrid/mail": "^6.4.0",
"@types/sendgrid": "^4.3.0",
"moment": "^2.24.0",
"remarkable": "^2.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}