-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
65 lines (65 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
{
"name": "passport-facebook-token",
"version": "4.0.0",
"description": "Facebook token authentication strategy for Passport",
"license": "MIT",
"main": "src/index.js",
"homepage": "https://github.com/drudge/passport-facebook-token#readme",
"bugs": {
"url": "https://github.com/drudge/passport-facebook-token/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/drudge/passport-facebook-token.git"
},
"author": {
"name": "Nicholas Penree",
"email": "[email protected]",
"url": "http://www.penree.com/"
},
"contributors": [
{
"name": "Eugene Obrezkov",
"email": "[email protected]",
"url:": "https://ghaiklor.com"
}
],
"keywords": [
"passport",
"facebook",
"auth",
"authn",
"authentication",
"identity"
],
"files": [
"src"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint --fix .",
"prepublishOnly": "npm run test && npm run lint",
"test": "nyc mocha"
},
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-passport-strategy": "1.0.1",
"coveralls": "3.1.0",
"eslint": "7.2.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"mocha": "10.1.0",
"nyc": "15.1.0",
"sinon": "9.0.2"
}
}