-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "github-automerge",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prestart": "npm run build",
"start": "func start",
"test": "jest",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org sierra-softworks --project github-automerge ./dist && sentry-cli sourcemaps upload --org sierra-softworks --project github-automerge ./dist"
},
"main": "dist/src/index.mjs",
"files": [
"dist/src/**/*.js"
],
"devDependencies": {
"@octokit/graphql": "^9.0.3",
"@octokit/webhooks": "^14.2.0",
"@octokit/webhooks-definitions": "^3.67.0",
"@sentry/cli": "^3.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"dependencies": {
"@azure/functions": "^4.14.0",
"@flipt-io/flipt": "^1.5.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.74.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.216.0",
"@opentelemetry/sdk-node": "^0.216.0",
"@opentelemetry/semantic-conventions": "^1.40.0"
}
}