-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 891 Bytes
/
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
{
"name": "health-check-to-splunk-on-call",
"private": true,
"version": "0.0.0",
"description": "Relay Cloudflare health check payload to Splunk On-Call (FKA Victorops)",
"keywords": [
"Cloudflare",
"Health-Check",
"Splunk-On-Call",
"Victorops",
"Notification",
"Incident"
],
"author": "Fiverr",
"license": "Unlicense",
"main": "index.js",
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --outfile=index.js --format=esm --bundle",
"format": "prettier -w .",
"lint": "prettier -c .",
"pretest": "npm run build",
"publish": "wrangler publish",
"start": "wrangler dev src/index.ts",
"test": "node --test tests/index.js",
"wrangler": "wrangler"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.11.0",
"esbuild": "^0.14.43",
"prettier": "^2.7.0",
"wrangler": "^2.0.12"
}
}