forked from Slotos/passport-reddit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "passport-reddit",
"version": "0.2.4",
"description": "Reddit authentication strategy for Passport.",
"keywords": ["passport", "reddit", "auth", "authn", "authentication", "identity"],
"repository": {
"type": "git",
"url": "git://github.com/slotos/passport-reddit.git"
},
"bugs": {
"url": "http://github.com/slotos/passport-reddit/issues"
},
"author": {
"name": "Jared Hanson",
"email": "[email protected]",
"url": "http://www.jaredhanson.net/"
},
"contributors": [
{
"name": "Dmytro Soltys",
"email": "[email protected]",
"url": "http://slotos.net/"
},
{
"name": "Brian Partridge",
"email": "[email protected]",
"url": "http://brianpartridge.com/"
}
],
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"main": "./lib/passport-reddit",
"dependencies": {
"pkginfo": "0.3.x",
"passport-oauth": "1.x"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"sinon": "*",
"blanket": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"nock": "*",
"passport": "*",
"supertest": "*",
"crypto": "*",
"express": "3.x"
},
"scripts": {
"test": "make coveralls",
"blanket": {
"pattern": "//^(?!.*node_modules.*$).*lib\//"
}
},
"engines": { "node": ">= 0.8.0" }
}