This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.52 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
{
"name": "feathers-passport",
"version": "0.1.1",
"description": "Feathers REST and websocket authentication with PassportJS.",
"homepage": "https://github.com/feathersjs/feathers-passport",
"keywords": [
"feathers-plugin",
"feathers"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/feathers-passport/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-passport.git"
},
"author": {
"name": "David Luecke",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-passport/issues"
},
"engines": {
"node": ">=0.10.0"
},
"main": "lib/passport.js",
"scripts": {
"test": "grunt test"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"cookie-parser": "^1.3.3",
"debug": "^2.0.0",
"express-session": "^1.8.1",
"lodash": "^2.4.1",
"passport": "^0.2.1"
},
"devDependencies": {
"body-parser": "^1.9.0",
"feathers": "^1.0.0",
"feathers-hooks": "^0.4.0",
"feathers-memory": "^0.3.4",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.7",
"grunt-contrib-jshint": "~0.x",
"grunt-contrib-watch": "~0.5.3",
"grunt-release": "~0.5.1",
"grunt-simple-mocha": "~0.4.0",
"mocha": "*",
"passport-local": "^1.0.0",
"request": "^2.44.0",
"socket.io-client": "^1.1.0",
"tough-cookie": "^0.12.1",
"xmlhttprequest": "^1.6.0"
}
}