forked from okta/okta-oidc-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "@okta/jwt-verifier",
"version": "1.0.1",
"description": "Easily validate Okta access tokens",
"repository": "https://github.com/okta/okta-oidc-js",
"homepage": "https://github.com/okta/okta-oidc-js/tree/master/packages/jwt-verifier",
"main": "lib.js",
"files": [
"src"
],
"scripts": {
"test": "yarn test:unit && yarn test:integration",
"test:integration": "../../scripts/tck.sh",
"test:unit": "JEST_JUNIT_OUTPUT=./reports/junit/results.xml jest --runInBand test/spec",
"test:ci": "JEST_JUNIT_OUTPUT=./reports/junit/results.xml jest test/internal-ci"
},
"keywords": [
"okta",
"oidc",
"OpenId Connect",
"authentication",
"auth",
"jwt"
],
"engines": {
"node": ">=6"
},
"jest": {
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "jsdom"
},
"license": "Apache-2.0",
"dependencies": {
"@okta/configuration-validation": "^0.1.1",
"jwks-rsa": "1.11.0",
"njwt": "^1.0.0"
},
"devDependencies": {
"cors": "^2.8.4",
"cross-env": "^5.1.1",
"express": "^4.15.4",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"nock": "^9.0.14",
"node-fetch": "^2.6.0",
"timekeeper": "^1.0.0"
}
}