-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 1.97 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@okta/jwt-verifier",
"private": true,
"version": "4.1.0",
"description": "Easily validate Okta access tokens",
"repository": "https://github.com/okta/okta-jwt-verifier-js",
"homepage": "https://github.com/okta/okta-jwt-verifier-js",
"main": "lib.js",
"types": "lib.d.ts",
"scripts": {
"build": "node build-scripts/build.js",
"banners": "node build-scripts/maintain-banners.js",
"prepare": "yarn build",
"test": "yarn test:unit && yarn test:integration && yarn lint",
"test:integration": "../../scripts/tck.sh",
"test:unit": "JEST_JUNIT_OUTPUT_FILE=./reports/unit/results.xml jest --runInBand test/spec",
"test:ci": "JEST_JUNIT_OUTPUT_FILE=./reports/ci/results.xml jest test/internal-ci",
"lint": "eslint . --ext .js --ext .ts && tsd"
},
"keywords": [
"okta",
"oidc",
"OpenId Connect",
"authentication",
"auth",
"jwt"
],
"engines": {
"node": ">=14"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node"
},
"license": "Apache-2.0",
"dependencies": {
"jwks-rsa": "^3.1.0",
"njwt": "^2.0.1"
},
"resolutions": {
"minimist": "^1.2.6",
"minimatch": "^3.1.2",
"glob-parent": "^6.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chalk": "^4.1.2",
"cors": "^2.8.4",
"cross-env": "^5.1.1",
"dotenv": "^10.0.0",
"eslint": "^8.34.0",
"eslint-plugin-node": "^11.1.0",
"express": "^4.18.2",
"globby": "^11.0.4",
"jest": "29.5.0",
"jest-junit": "^13.0.0",
"nock": "^13.2.9",
"node-fetch": "^2.6.7",
"shelljs": "^0.8.5",
"timekeeper": "^1.0.0",
"tsd": "^0.19.1",
"typescript": "^4.1.5"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"skipLibCheck": true,
"esModuleInterop": true,
"paths": {
"@okta/jwt-verifier": [
"."
]
}
}
}
}