forked from jaredhanson/passport-github
-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
51 lines (51 loc) · 1.03 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
{
"name": "passport-github2",
"version": "0.1.11",
"description": "GitHub authentication strategy for Passport.",
"keywords": [
"passport",
"github",
"auth",
"authn",
"authentication",
"identity"
],
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
},
"contributors": [
{
"name": "Fred Chien",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/cfsghost/passport-github.git"
},
"bugs": {
"url": "http://github.com/cfsghost/passport-github/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"passport-oauth2": "1.x.x"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
}
}