forked from senecajs/seneca-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.14 KB
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
{
"name": "seneca-auth",
"description": "User authentication plugin for the seneca module.",
"version": "0.4.0",
"keywords": [
"seneca",
"auth",
"plugin",
"user",
"authentication",
"web"
],
"author": "Richard Rodger",
"license": "MIT",
"main": "lib/auth.js",
"scripts": {
"test": "node_modules/.bin/mocha test/*.test.js"
},
"files": [
"LICENSE.txt",
"README.md",
"lib"
],
"dependencies": {
"async": "~0.9.0",
"connect": "~3.0.1",
"cookies": "~0.4.1",
"dispatch": "~1.0.0",
"gex": "~0.1.4",
"passport": "~0.2.0",
"passport-facebook": "~1.0.3",
"passport-github": "~0.1.5",
"passport-google-oauth": "~0.1.5",
"passport-linkedin": "~0.1.3",
"passport-local": "~1.0.0",
"passport-twitter": "~1.0.2",
"serve-static": "~1.3.0",
"string": "~1.9.0",
"underscore": "~1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rjrodger/seneca-auth.git"
},
"devDependencies": {
"seneca-user": "0.2.10",
"seneca": "0.5.19",
"mocha": "1.20.1"
},
"peerDependencies": {
"seneca": "*",
"seneca-user": "*"
}
}