-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 999 Bytes
/
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
{
"name": "simple-oidc-client",
"version": "1.0.1",
"description": "Simple OpenID-Connect Client",
"main": "server.js",
"bin": {
"simple-oidc-client": "./dist/server.js"
},
"files": [
"./dist",
"LICENSE",
"*.md"
],
"scripts": {
"build": "rollup -c"
},
"keywords": [
"OIDC",
"OpenID-Connect"
],
"author": "Xavier Guimard <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linagora/simple-oidc-client"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"express": "^4.18.2",
"jwt-decode": "^3.1.2",
"node-fetch": "^3.3.1",
"node-html-parser": "^6.1.5",
"openid-client": "^5.4.3",
"rollup": "^3.26.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-shebang-bin": "^0.0.5",
"yargs": "^17.7.2"
}
}