-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "oauth2orize-authorization-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": {
"accesscontrol": "^2.2.1",
"body-parser": "^1.9.x",
"connect-ensure-login": "^0.1.x",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.3.x",
"ejs": "^2.5.x",
"express": "^4.10.x",
"express-session": "^1.9.x",
"jsonwebtoken": "^7.2.1",
"mongoose": "^5.9.9",
"mongoose-sequence": "^5.2.2",
"oauth2orize": "^1.0.x",
"passport": "^0.3.x",
"passport-http": "^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",
"uuid": "^3.0.1"
},
"scripts": {
"lint": "eslint *.js config db test",
"start": "node app.js",
"test": "mocha test test/db test/config",
"test:watch": "npm run test -- --watch",
"test:integration": "mocha test/integration"
},
"engines": {
"node": ">=6.7.0",
"npm": ">=3.10.0"
},
"devDependencies": {
"chai": "^3.5.0",
"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",
"mocha": "^3.2.x",
"es6-promisify": "^5.0.x",
"request": "^2.48.x",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
},
"keywords": [
"authentication",
"oauth2",
"security",
"passport"
]
}