forked from anvilresearch/connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "anvil-connect",
"description": "A modern authorization server built to authenticate your users and protect your APIs",
"version": "0.1.36",
"author": {
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
"contributors": [
{
"name": "Tom Kersten",
"email": "[email protected]",
"url": "http://tomkersten.com"
},
{
"name": "Adi Chikara",
"url": "https://twitter.com/adi_ads"
}
],
"repository": {
"type": "git",
"url": "https://github.com/christiansmith/anvil-connect.git"
},
"keywords": [
"Auth",
"Authentication",
"Authorization",
"Access Control",
"SSO",
"Single Sign-On",
"Identity",
"Signin",
"Sign-in",
"OAuth",
"OAuth 1.0",
"OAuth 2.0",
"OpenID",
"OpenID Connect",
"OIDC",
"API",
"API Key",
"JWT",
"JWS",
"Token",
"Social",
"User",
"Federated",
"Google",
"Facebook",
"Twitter",
"GitHub",
"Password"
],
"scripts": {
"start": "node server.js",
"test": "mocha --compilers coffee:coffee-script/register -R dot --watch"
},
"bin": {
"nv": "./bin/nv"
},
"main": "server.js",
"license": "MIT",
"devDependencies": {
"chai": "~2.2.0",
"coffee-script": "~1.9.2",
"faker": "~2.1.2",
"fakeredis": "~0.3.1",
"mocha": "~2.2.4",
"nock": "~0.51.0",
"sinon": "~1.14.1",
"sinon-chai": "~2.7.0",
"supertest": "~0.15.0"
},
"dependencies": {
"anvil-connect-jwt": "~0.1.2",
"async": "~0.8.0",
"base64url": "0.0.6",
"bcrypt": "~0.7.7",
"body-parser": "~1.0.2",
"bucker": "~1.0.9",
"connect-redis": "~2.0.0",
"cookie-parser": "~1.0.1",
"cors": "~2.2.0",
"express": "~4.1.1",
"express-session": "~1.0.2",
"fs-extra": "~0.9.1",
"iniparser": "~1.0.5",
"inquirer": "~0.5.1",
"jade": "~1.3.1",
"jsjws": "~0.7.1",
"jsrsasign": "0.0.3",
"jwa": "0.0.2",
"lodash": "~2.4.1",
"mellt": "~1.0.0",
"modinha": "0.0.26",
"modinha-redis": "0.0.15",
"passport": "~0.2.0",
"passport-local": "~1.0.0",
"passport-openid": "~0.3.1",
"passport-strategy": "~1.0.0",
"qs": "~2.3.2",
"redis": "~0.11.0",
"superagent": "~0.21.0",
"uri-js": "~1.4.2",
"yargs": "~1.2.2"
}
}