-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.35 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
{
"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 ."
},
"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/graphql": "^8.0.1",
"@octokit/plugin-throttling": "^9.0.3",
"@octokit/webhooks": "^13.1.1",
"@types/node": "^20.11.30",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.1",
"deep-object-diff": "^1.1.9",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}