forked from ghaiklor/passport-github-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "passport-github-token",
"version": "3.0.0",
"description": "Passport strategy for authenticating with GitHub via OAuth2 access tokens",
"main": "src/index.js",
"scripts": {
"coveralls": "cat coverage/lcov.info | coveralls",
"test": "isparta cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/passport-github-token.git"
},
"keywords": [
"passport",
"github",
"token",
"auth",
"authentication"
],
"files": [
"src"
],
"author": "ghaiklor",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghaiklor/passport-github-token/issues"
},
"homepage": "https://github.com/ghaiklor/passport-github-token",
"dependencies": {
"passport-oauth": "1.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-passport-strategy": "1.0.1",
"coveralls": "3.0.9",
"isparta": "4.1.1",
"mocha": "7.1.0",
"sinon": "9.0.0"
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}