forked from hmarr/auto-approve-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 948 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
33
34
35
{
"name": "auto-approve-dependabot-action",
"version": "2.0.1",
"description": "Automatically approve dependabot pull requests",
"main": "dist/main.ts",
"scripts": {
"build": "ncc build src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cognitedata/auto-approve-dependabot-action.git"
},
"keywords": [
"actions"
],
"author": "Cognite AS",
"license": "MIT",
"bugs": {
"url": "https://github.com/cognitedata/auto-approve-dependabot-action/issues"
},
"homepage": "https://github.com/cognitedata/auto-approve-dependabot-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@zeit/ncc": "^0.21.1",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
}
}