-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 880 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": "check-pr-signoff-action",
"version": "1.0.0",
"private": true,
"description": "Checks for a sign-off in every commit in a pull request and adds a comment if a commit was detected without one.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --fix",
"build": "ncc build src/main.js -m",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/live627/check-pr-signoff-action.git"
},
"author": "live627",
"license": "MIT",
"bugs": {
"url": "https://github.com/live627/check-pr-signoff-action/issues"
},
"homepage": "https://github.com/live627/check-pr-signoff-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.31.1",
"eslint": "^5.13.0"
}
}