-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
32 lines (32 loc) · 896 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
{
"name": "pr-reviews-reminder-action",
"version": "2.8.0",
"description": "Reminder for Pull Request pending reviews",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint ./",
"test": "nyc mocha",
"coverage": "nyc --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideViolante/pr-reviews-reminder-action.git"
},
"author": "Davide Violante",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideViolante/pr-reviews-reminder-action/issues"
},
"homepage": "https://github.com/DavideViolante/pr-reviews-reminder-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"axios": "^1.7.7"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"eslint": "^8.41.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0"
}
}