-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
{
"name": "docpad-plugin-authentication",
"version": "2.5.2",
"description": "Handles authentication and login functionality via social login for your docpad application. Protects pages from unauthenticated users",
"homepage": "https://github.com/SteveMcArthur/docpad-plugin-authentication",
"keywords": [
"docpad",
"docpad-plugin",
"authentication",
"login",
"social",
"twitter",
"facebook",
"google"
],
"badges": {
"travis": true,
"npm": true,
"npmdownloads": true,
"david": true,
"daviddev": true
},
"author": "Steve McArthur <[email protected]> (http://www.stevemcarthur.co.uk)",
"maintainers": [
"Steve McArthur <[email protected]> (https://github.com/SteveMcArthur)"
],
"contributors": [
"Steve McArthur <[email protected]> (https://github.com/SteveMcArthur)"
],
"bugs": {
"url": "https://github.com/SteveMcArthur/docpad-plugin-authentication/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/SteveMcArthur/docpad-plugin-authentication"
},
"engines": {
"node": ">=0.8"
},
"peerDependencies": {
"docpad": ">=6.3 <7"
},
"dependencies": {
"express": "~3.4.4",
"express-session": "^1.10.3",
"passport": "^0.2.1",
"passport-facebook": "latest",
"passport-github": "^0.1.5",
"passport-google-oauth": "^0.1.5",
"passport-local": "^1.0.0",
"passport-twitter": "latest",
"underscore": "latest",
"safefs": "~3.1.0",
"taskgroup": "~3.3.6"
},
"devDependencies": {
"chai": "~1.9.0",
"cake": "^0.1.1",
"coffee-script": "^1.9.2",
"docpad": ">=6.3 <7",
"joe": "1.6.0",
"assert-helpers": "^4.4.0",
"joe-reporter-console": "1.2.1",
"projectz": "^0.5.0",
"request": "~2.33.0"
},
"main": "./out/authentication.plugin.js",
"license": "MIT",
"cakeConfiguration": {
"COFFEE_SRC_PATH": "src"
},
"scripts": {
"test": "node ./out/authentication.test.js"
}
}