-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "oauth2-token-manager-for-nodeJS",
"description": "Manage Oauth token in NodeJs. This project aims to show how to manage Oauth token lifecycle. You could freely reuse the token module in your project. It use Got to handle http requests process.",
"version": "1.1.0",
"keywords": [
"oauth",
"token",
"openid",
"Orange"
],
"homepage": "TOBEDEFINED",
"author": "https://github.com/Orange-OpenSource/oauth2-token-manager-for-nodeJS/graphs/contributors",
"contributors": [
"Orange SA"
],
"scripts": {
"build": "cross-env-shell shx cp -r node_modules/boosted/dist/css/ public/stylesheets/",
"start": "node -r dotenv/config ./bin/www"
},
"license": "MIT",
"dependencies": {
"debug": "~4.3.1",
"dotenv": "^8.2.0",
"express": "^5.2.1",
"http-errors": "^1.7.3",
"morgan": "~1.10.1",
"openid-client": "^5.1.9",
"pug": "^3.0.3"
},
"devDependencies": {
"cross-env": "^7.0.0",
"got": "^12.5.3",
"shx": "^0.3.2",
"win-ca": "^3.5.0"
}
}