-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
104 lines (104 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"private": true,
"name": "@okta/oidc-middleware",
"version": "5.5.0",
"description": "OpenId Connect middleware for authorization code flows",
"repository": "https://github.com/okta/okta-oidc-middleware",
"homepage": "https://github.com/okta/okta-oidc-middleware#readme",
"keywords": [
"okta",
"oidc",
"OpenId Connect",
"authentication",
"auth"
],
"files": [
"src",
"types"
],
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"prepare": "yarn build",
"build": "node scripts/build.js",
"clean": "rm -rf dist && rm -rf reports",
"banners": "node util/maintain-banners.mjs",
"lint": "eslint .",
"lint:report": "eslint -f checkstyle -o ./reports/lint/eslint-checkstyle-result.xml .",
"test": "yarn lint && yarn test:types && yarn test:unit && yarn test:e2e && yarn test:integration",
"pretest:e2e": "yarn kill:port",
"posttest:e2e": "yarn kill:port",
"test:e2e": "wdio run wdio.conf.js",
"test:integration": "scripts/tck.sh 0.4.0",
"test:types": "tsd",
"test:unit": "jest",
"start": "node test/e2e/harness/start-server.js",
"start:custom": "node test/e2e/harness/start-custom-login-server.js",
"kill:port": "kill -s TERM $(lsof -t -i:8080 -sTCP:LISTEN) || true"
},
"engines": {
"node": "^12.19.0 || ^14.15.0 || ^16.13.0 || ^18.14.0 || ^20.5.0"
},
"license": "Apache-2.0",
"dependencies": {
"@okta/configuration-validation": "^0.4.1",
"@types/express": "^4.17.21",
"csrf-sync": "^4.0.3",
"express": "^4.21.0",
"lodash": "^4.17.21",
"negotiator": "^0.6.3",
"node-fetch": "^2.6.13",
"openid-client": "^5.6.5",
"passport": "^0.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@wdio/cli": "^8.10.0",
"@wdio/jasmine-framework": "^8.10.0",
"@wdio/junit-reporter": "^8.10.0",
"@wdio/local-runner": "^8.10.0",
"@wdio/selenium-standalone-service": "^8.10.0",
"@wdio/spec-reporter": "^8.10.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.0",
"dotenv": "^8.1.0",
"ejs": "^3.0.8",
"eslint": "^8.16.0",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-wdio": "^7.21.0",
"express-session": "^1.15.5",
"globby": "^13.1.3",
"jest": "^29.5.0",
"jest-junit": "^13.2.0",
"nock": "^11.9.1",
"read-package-tree": "^5.1.6",
"server-destroy": "^1.0.1",
"shelljs": "0.8.5",
"supertest": "^6.3.3",
"tsd": "^0.25.0",
"typescript": "^4.1.5",
"wdio-wait-for": "^2.2.6"
},
"resolutions": {
"webdriver-manager": "^12.1.4",
"strip-ansi": "^6.0.1",
"ua-parser-js": "^1.0.33",
"**/recursive-readdir/minimatch": "^3.1.2",
"**/globule/minimatch": "^3.1.2"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"skipLibCheck": true,
"esModuleInterop": true,
"paths": {
"@okta/oidc-middleware": [
"."
]
}
}
}
}