forked from senecajs/seneca-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.02 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
{
"name": "seneca-auth",
"description": "User authentication plugin for the seneca module.",
"version": "1.0.1",
"keywords": [
"seneca",
"auth",
"plugin",
"user",
"authentication",
"web"
],
"author": {
"name": "Richard Rodger",
"email": "[email protected]",
"url": "http://richardrodger.com/"
},
"contributors": [
{
"name": "Mircea Alexandru",
"email": "[email protected]",
"url": "https://github.com/mirceaalexandru"
},
{
"name": "Girish Lakshmanan",
"email": "[email protected]",
"url": "https://github.com/girishla"
}
],
"license": "MIT",
"main": "auth.js",
"scripts": {
"test": "lab test/*.test.js -r console -v -L -m 3000 -t 60",
"coverage": "lab -s test/*.test.js -r lcov | coveralls",
"lint": "lab -dL",
"annotate": "docco auth.js -o doc"
},
"files": [
"LICENSE.txt",
"README.md",
"auth.js",
"default-options.js",
"lib"
],
"dependencies": {
"auth-redirect": "0.0.x",
"auth-token-cookie": "0.0.x",
"auth-urlmatcher": "0.0.x",
"seneca-local-auth": "0.1.x",
"connect": "~3.4.1",
"eraro": "^0.4.1",
"passport": "~0.3.2",
"lodash": "^4.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-auth.git"
},
"devDependencies": {
"assert": "^1.3.0",
"async": "~0.9.0",
"auth-restrict-login": "0.0.x",
"auth-token-header": "0.0.x",
"bell": "6.0.0",
"body-parser": "^1.13.2",
"chairo": "2.0.0",
"cookie-parser": "^1.3.5",
"cookies": "~0.4.1",
"coveralls": "^2.11.6",
"docco": "0.7.0",
"eslint-config-seneca": "1.1.2",
"eslint-plugin-standard": "1.3.1",
"express": "^4.13.1",
"express-session": "^1.11.3",
"hapi": "12.0.0",
"hapi-auth-cookie": "5.0.0",
"lab": "6.2.0",
"seneca": "plugin",
"seneca-entity": "0.0.x",
"seneca-user": "1.0.x",
"supertest": "~1.0.1"
},
"peerDependencies": {
"seneca": "*",
"seneca-user": "*"
}
}