-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 749 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 749 Bytes
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
{
"name": "oidc",
"version": "1.0.0",
"description": "OIDC identity provider",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "node src/index",
"test": "node_modules/.bin/mocha tests",
"lint": "node_modules/.bin/eslint src/**/*.js",
"setup": "mongo localhost/oidc scripts/mongo-init.js"
},
"author": "Ben Zuill-Smith",
"license": "MIT",
"devDependencies": {
"eslint": "^4.18.0",
"mocha": "^5.0.1",
"openid-client": "^1.19.4",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"superagent": "^3.8.2"
},
"dependencies": {
"express": "^4.16.2",
"mongodb": "^3.0.2",
"morgan": "^1.9.0",
"oidc-provider": "^2.13.1",
"winston": "^3.0.0-rc1"
}
}