-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.93 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "auto-approve",
"version": "1.0.0",
"description": "Approves and tags pull requests that meet user-defined criteria",
"private": true,
"author": "Google LLC.",
"license": "Apache-2.0",
"repository": "https://github.com/googleapis/repo-automation-bots.git",
"homepage": "https://github.com/googleapis/repo-automation-bots",
"bugs": "https://github.com/googleapis/repo-automation-bots/issues",
"main": "build/src/app.js",
"keywords": [
"probot",
"github",
"probot-app"
],
"files": [
"build/src"
],
"scripts": {
"compile": "tsc",
"start": "node ./build/src/server.js",
"pretest": "npm run compile",
"test": "cross-env c8 mocha --exit build/test",
"test:snap": "SNAPSHOT_UPDATE=1 npm test",
"fix": "gts fix",
"lint": "gts check"
},
"dependencies": {
"@google-cloud/secret-manager": "^5.6.0",
"@octokit/rest": "^20.1.2",
"ajv": "^8.11.0",
"dayjs": "^1.11.5",
"gcf-utils": "^17.2.0",
"semver": "^7.3.8"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@types/sinon": "^10.0.13",
"c8": "^12.0.0",
"cross-env": "^7.0.3",
"gts": "^4.0.0",
"js-yaml": "^4.3.1",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"node-fetch": "^2.6.9",
"sinon": "^15.0.0",
"snap-shot-it": "^7.9.6",
"typescript": "~4.9.0"
},
"engines": {
"node": ">= 22"
},
"overrides": {
"@tootallnate/once": "^3.0.1",
"qs": "6.15.2",
"serialize-javascript": "^7.0.5",
"tmp": "0.2.7",
"uuid": "^11.1.1",
"protobufjs": "^7.6.5",
"@opentelemetry/core": "2.8.0",
"@opentelemetry/sdk-trace-base": "2.8.0",
"@opentelemetry/resources": "2.8.0",
"@opentelemetry/context-async-hooks": "2.8.0",
"js-yaml": "^4.3.1",
"body-parser": "^2.3.0",
"brace-expansion": "^5.0.8",
"fast-uri": "^3.1.4",
"debug": "^4.3.4",
"diff": "^8.0.4"
}
}