-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.33 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.33 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@optum/openid-client-server",
"version": "1.1.5",
"description": "An OpenId Relying Party (RP, Client) application server.",
"license": "Apache-2.0",
"repository": "https://github.com/optum/openid-client-server",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "npm run prettier-check && rimraf dist && tsc -p src/tsconfig.json",
"test": "npm run prettier-check && nyc ava",
"prettier-check": "prettier --check 'src/**/*.{js,ts,tsx}'",
"lint": "prettier --write 'src/**/*.{js,ts,tsx}'",
"postlint": "yarn pretty-json-files",
"type-check": "tsc -p tsconfig.json --noEmit",
"clean": "rimraf coverage dist .nyc_output",
"pretty-json-files": "prettier --write --config .prettierrc src/tsconfig.json tsconfig.json test/helpers/example-openid-configuration.json",
"release": "release-it --no-npm.publish"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "dist/index.js",
"files": [
"dist",
"src/**/*.ts"
],
"keywords": [
"openid",
"openid-client",
"web-app-server"
],
"dependencies": {
"cookies": "^0.8.0",
"crypto-random-string": "^3.1.0",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^3.0.1",
"ms": "^2.1.3",
"node-fetch": "^2.6.7",
"openid-client": "^3.14.0",
"p-pipe": "^3.0.0",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1",
"qs": "^6.11.0 "
},
"devDependencies": {
"@types/cookies": "^0.7.4",
"@types/jsonwebtoken": "^9.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.5",
"@types/qs": "^6.9.1",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"ava": "^4.3.3",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"mock-http": "^1.0.2",
"nock": "^13.0.4",
"nyc": "^15.0.0",
"p-event": "^4.1.0",
"prettier": "^2.0.5",
"release-it": "^15.10.2",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2",
"ts-sinon": "^1.0.25",
"typescript": "^4.1.6",
"uuid": "^7.0.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"src/**/*.ts"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/*.test.ts",
"test/**/*.test.ts"
],
"cache": true,
"concurrency": 1,
"failFast": false,
"verbose": true
},
"packageManager": "yarn@3.3.3",
"resolutions": {
"lodash": "4.17.21",
"vm2": "3.9.17",
"semver-regex": "3.1.4",
"glob-parent": "5.1.2",
"jose": "1.28.2",
"minimatch": "5.0.1",
"got": "12.5.3"
}
}