forked from Bren2010/cf-access-jwt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
47
{
"name": "@primarykids/cf-access-jwt",
"version": "1.0.0",
"description": "Tiny lib for verifying Cloudflare Access JWTs.",
"keywords": [
"jwt",
"crypto",
"cloudflare",
"worker",
"workers",
"service-worker"
],
"main": "dist/index.js",
"module": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"tsconfig.json",
"README.md",
"package.json"
],
"repository": "https://github.com/PrimaryKids/cf-access-jwt",
"author": "Corey Psoinos <cpsoinos@primary.com>",
"homepage": "https://github.com/PrimaryKids/cf-access-jwt",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "cfworker test test/**/*.spec.ts --nocheck"
},
"dependencies": {
"@cfworker/base64url": "^1.6.8",
"@cfworker/worker-types": "^1.6.8",
"@cloudflare/workers-types": "^2.1.0"
},
"devDependencies": {
"@cfworker/dev": "^1.6.8",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.0",
"mocha": "^8.3.0",
"typescript": "^4.5.2"
},
"packageManager": "yarn@3.1.0"
}