-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "oauth2orize-resource-server",
"version": "6.3.4",
"author": "Frank Hassanabad <frankhassanabad@gmail.com>",
"description": "OAuth2 security recipes and examples based on OAuth2orize",
"license": "MIT",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/FrankHassanabad/Oauth2orizeRecipes.git"
},
"dependencies": {
"body-parser": "^1.9.x",
"connect-ensure-login": "^0.1.x",
"cookie-parser": "^1.3.x",
"ejs": "^2.5.x",
"express": "^4.10.x",
"express-session": "^1.9.x",
"passport": "^0.3.x",
"passport-http-bearer": "^1.0.x",
"passport-local": "^1.0.x",
"passport-oauth2-client-password": "^0.1.x",
"pug": "^2.0.4",
"request": "^2.48.x"
},
"devDependencies": {
"eslint": "^4.18.x",
"eslint-config-airbnb": "^13.0.x",
"eslint-plugin-import": "^2.2.x",
"eslint-plugin-jsx-a11y": "^2.2.x",
"eslint-plugin-react": "^6.7.x"
},
"scripts": {
"lint": "eslint *.js config db sso",
"start": "node app.js"
},
"engines": {
"node": ">=6.7.0",
"npm": ">=3.10.0"
},
"keywords": [
"authentication",
"oauth2",
"security",
"passport"
]
}