forked from sagi/workers-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "@sagi.io/workers-jwt",
"version": "0.0.20",
"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",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel --ignore '**/*.test.js' --ignore testdata src -d lib --verbose",
"prepublish": "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.6.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"node-webcrypto-ossl": "^2.1.2",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/sagi/workers-jwt.git"
},
"keywords": ["cloudflare", "workers", "cloudflare workers", "jwt", "gcp", "service account", "firestore", "oauth", "oauth2"]
}