forked from blombard/review-reminder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 786 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
{
"name": "review-reminder",
"version": "0.6.0",
"description": "Send reminders to requested reviewers of a pull request",
"main": "dist/index.js",
"scripts": {
"coverage": "jest --coverage",
"test": "jest --coverage --verbose",
"build": "ncc build index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blombard/review-reminder.git"
},
"author": "Baptiste Lombard",
"license": "MIT",
"bugs": {
"url": "https://github.com/blombard/review-reminder/issues"
},
"homepage": "https://github.com/blombard/review-reminder#readme",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.24.0",
"jest": "^26.4.2",
"nock": "^13.0.4"
}
}