-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
37
38
39
40
41
42
43
44
{
"name": "automatic-pull-request-review",
"version": "0.0.5",
"description": "👍 Github action to automate pull requests",
"private": true,
"main": "dist/index.js",
"scripts": {
"watch": "ncc build index.ts --watch --minify",
"build": "ncc build index.ts --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewmusgrave/automatic-pull-request-review.git"
},
"keywords": [
"github-actions",
"pulls",
"request"
],
"author": "Andrew Musgrave <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewmusgrave/automatic-pull-request-review/issues"
},
"homepage": "https://github.com/andrewmusgrave/automatic-pull-request-review#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/node": "^12.7.4",
"@vercel/ncc": "^0.28.5",
"husky": "^3.0.5",
"typescript": "^4.2.4"
},
"files": [
"dist/index.js"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dist/index.js"
}
}
}