-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 728 Bytes
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
{
"name": "github-gpg-badge",
"version": "2.2.0",
"type": "module",
"description": "A server for generating badges that show whether a GitHub user has a GPG key publicly associated with their account",
"main": "src/index.js",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"tail": "wrangler tail",
"test": "vitest run",
"test:watch": "vitest",
"snapshot:badges": "node scripts/snapshot-badges.js"
},
"keywords": [
"github",
"gpg",
"badge",
"security",
"cloudflare",
"workers"
],
"author": "Really Him",
"license": "MIT",
"engines": {
"node": "20.x"
},
"devDependencies": {
"vitest": "^4.0.18",
"wrangler": "^4.63.0"
}
}