-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
41
42
43
44
45
46
{
"name": "@sagi.io/workers-jwt",
"version": "0.0.26",
"description": "Generate JWTs on Cloudflare Workers using the WebCrypto API",
"author": "Sagi Kedmi <[email protected]> (https://sagi.io)",
"homepage": "https://sagi.io",
"main": "index.js",
"type": "commonjs",
"types": "index.d.ts",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel --ignore '**/*.test.js' --ignore testdata src -d lib --verbose",
"prepublishOnly": "yarn build && yarn test",
"coverage": "yarn build && yarn jest --coverage",
"test": "yarn build && yarn jest"
},
"dependencies": {
"@sagi.io/globalthis": "^0.0.2",
"js-base64": "^3.7.7"
},
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/sagi/workers-jwt.git"
},
"keywords": [
"cloudflare",
"workers",
"cloudflare workers",
"jwt",
"gcp",
"service account",
"firestore",
"oauth",
"oauth2"
]
}