forked from trailsjs/sails-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.54 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
{
"name": "sails-auth",
"version": "2.0.0",
"description": "Passport-based User Authentication system for sails.js applications.",
"main": "dist/api/hooks/auth/index.js",
"scripts": {
"test": "mocha --reporter spec --compilers js:babel/register",
"prepublish": "gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/tjwebb/sails-auth.git"
},
"keywords": [
"sails",
"sails.js",
"authentication",
"auth",
"passport",
"oauth",
"oauth2",
"openid",
"passport.js",
"generator",
"google",
"facebook",
"twitter",
"linkedin",
"instagram",
"youtube"
],
"author": "Travis Webb <me@traviswebb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjwebb/sails-auth/issues"
},
"homepage": "https://github.com/tjwebb/sails-auth",
"dependencies": {
"babel": "^5.8.21",
"bcryptjs": "^2.2",
"bluebird": "^2.9.32",
"lodash": "^3.10",
"marlinspike": "^0.12",
"passport": "^0.3",
"passport-http": "^0.3",
"passport-local": "^1.0.0"
},
"bundledDependencies": [
"bcryptjs",
"bluebird",
"lodash",
"passport",
"passport-http",
"passport-local"
],
"devDependencies": {
"mocha": "^1.21.4",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"sails": "balderdashy/sails",
"sails-disk": "^0.10.7",
"socket.io-client": "^1.3.5",
"supertest": "^0.15.0"
},
"engines": {
"node": ">= 0.12",
"npm": ">= 2.11"
},
"sails": {
"isHook": true,
"hookName": "auth"
}
}