forked from drudge/passport-facebook-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "passport-facebook-token",
"version": "3.3.0",
"description": "Facebook token authentication strategy for Passport",
"main": "lib/index.js",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/drudge/passport-facebook-token.git"
},
"keywords": [
"passport",
"facebook",
"auth",
"authn",
"authentication",
"identity"
],
"author": {
"name": "Nicholas Penree",
"email": "[email protected]",
"url": "http://www.penree.com/"
},
"contributors": [
{
"name": "Eugene Obrezkov",
"email": "[email protected]",
"url:": "https://www.facebook.com/ghaiklor"
}
],
"license": "MIT",
"bugs": {
"url": "http://github.com/drudge/passport-facebook-token/issues"
},
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.4.5",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"chai": "3.4.1",
"chai-passport-strategy": "0.2.0",
"coveralls": "2.11.6",
"cz-conventional-changelog": "1.1.5",
"isparta": "4.0.0",
"mocha": "2.4.2",
"sinon": "1.17.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}