forked from strongloop/loopback-component-passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "loopback-component-passport",
"description": "LoopBack passport integration to support third party logins and account linking",
"engines": {
"node": ">=4"
},
"keywords": [
"StrongLoop",
"LoopBack",
"social",
"login",
"security"
],
"homepage": "https://github.com/strongloop/loopback-component-passport",
"version": "3.3.0",
"maintainers": [
{
"name": "Raymond Feng",
"email": "raymond@strongloop.com"
}
],
"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",
"strong-globalize": "^2.6.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"eslint": "^2.13.1",
"eslint-config-loopback": "^4.0.0",
"loopback": "^3.0.0",
"mocha": "^3.0.1",
"mock-require": "^1.3.0",
"sinon": "^1.17.5",
"supertest": "^2.0.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"
}