-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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": "gh-action-auto-merge-dependency-updates",
"version": "0.0.0",
"private": true,
"description": "A GitHub action that will automatically merge a PR that only contains dependency updates, based on some rules.",
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist && ncc build ./src/index.ts -o dist --license licenses.txt",
"watch": "ncc build ./src/index.ts -o dist --watch",
"prettier": "prettier --write .",
"lint": "prettier --check .",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates.git"
},
"author": "Tom Jenkinson <tom@tjenkinson.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates/issues"
},
"homepage": "https://github.com/tjenkinson/gh-action-auto-merge-dependency-updates#readme",
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/plugin-throttling": "^9.0.1",
"@octokit/webhooks": "13.6.1",
"@types/jest": "^29.4.0",
"@types/jest-when": "^3.5.2",
"@types/node": "^20.1.0",
"@types/semver": "^7.3.13",
"@vercel/ncc": "^0.38.0",
"deep-object-diff": "^1.1.9",
"husky": "^9.0.11",
"jest": "^29.4.3",
"jest-when": "^3.5.2",
"prettier": "^3.0.3",
"semver": "^7.3.8",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}