-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.76 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@cryptr/cryptr-jwt-verifier",
"version": "1.0.1",
"description": "Cryptr Jwt verifier library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"make-badges": "istanbul-badges-readme",
"test": "jest --env=node --config jest.config.json && npm run make-badges && yarn build",
"test:watch": "jest --watchAll --env=node --config jest.config.json && yarn build",
"unpublish": "npm unpublish ${npm_package_name}@${npm_package_version} --force",
"publish-force": "npm run unpublish && npm run build && ls && npm run publish:lib",
"publish": "npm run build && ls && npm run publish:lib",
"publish:lib": "npm publish",
"dev": "nodemon dev/index.js"
},
"dependencies": {
"@cryptr/cryptr-config-validation": "^0.1.0",
"@types/jwt-decode": "^2.2.1",
"jwks-rsa": "^3.1.0",
"jwt-decode": "^2.2.0",
"njwt": "^2.0.1"
},
"keywords": [
"cryptr",
"jwt",
"authentication",
"oAuth",
"token",
"jwks"
],
"resolutions": {
"jwks-rsa/jose": ">=4.15.5"
},
"overrides": {
"jose": ">=4.15.5"
},
"author": "Cryptr <thibaud@cryptr.co> (https://www/cryptr.co)",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"dotenv": "^16.4.5",
"istanbul-badges-readme": "^1.8.5",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryptr-auth/cryptr-jwt-verifier.git"
},
"bugs": {
"url": "https://github.com/cryptr-auth/cryptr-jwt-verifier/issues"
},
"homepage": "https://github.com/cryptr-auth/cryptr-jwt-verifier#readme"
}