forked from strongloop/loopback-component-passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "loopback-component-passport",
"description": "LoopBack passport integration to support third party logins and account linking",
"keywords": [
"StrongLoop",
"LoopBack",
"social",
"login",
"security"
],
"homepage": "https://github.com/strongloop/loopback-component-passport",
"version": "2.1.0",
"engines": {
"node": ">=0.10.0"
},
"maintainers": [
{
"name": "Raymond Feng",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/strongloop/loopback-component-passport/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/strongloop/loopback-component-passport.git"
},
"dependencies": {
"passport": "^0.3.2",
"underscore": "^1.8.2",
"eslint": "^2.5.3",
"eslint-config-loopback": "^1.0.0"
},
"devDependencies": {
"loopback": "^2.14.0",
"mocha": "^2.2.0",
"mock-require": "^1.2.1",
"sinon": "^1.17.3",
"supertest": "^1.2.0"
},
"scripts": {
"lint": "eslint .",
"test": "./node_modules/.bin/mocha -R spec --timeout 10000 test/*.js",
"posttest": "npm run lint"
},
"main": "./lib/index.js",
"license": "Artistic-2.0"
}