-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
45
46
{
"name": "dependabot-pull-request-action",
"version": "1.3.1",
"description": "Parse Dependabot commit metadata to automate PR handling",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"dry-run": "ts-node src/dry-run.ts"
},
"keywords": [
"actions",
"dependabot",
"merge",
"approve"
],
"author": "dependabot",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vercel/ncc": "^0.33.4",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^26.6.3",
"nock": "^13.2.4",
"ts-jest": "^26.5.6",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"yaml": "^2.0.1",
"yargs": "^17.4.1"
}
}