-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "cf-jwt",
"version": "1.0.4",
"description": "A simple JWT library for Cloudflare Workers that complies with RFC 7519.",
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run prettier && tsc && echo Build complete",
"prettier": "prettier --tab-width 4 --single-quote --write ./src/**/* && echo So much beautiful code!"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knokbak/cf-jwt.git"
},
"keywords": [
"jwt",
"cloudflare",
"cloudflare workers",
"workers",
"cloudflare jwt",
"json web token",
"jsonwebtoken",
"rfc7519",
"cfworkers",
"cf-jwt"
],
"author": "knokbak",
"license": "BSD-3",
"bugs": {
"url": "https://github.com/knokbak/cf-jwt/issues"
},
"homepage": "https://github.com/knokbak/cf-jwt#readme",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.0.6",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"dependencies": {
"base64url": "^3.0.1",
"crypto-js": "^4.1.1"
}
}