-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
77 lines (77 loc) · 1.78 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "passport-reddit",
"version": "1.1.0",
"description": "Reddit authentication strategy for Passport.",
"type": "module",
"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": {
"passport-oauth2": "^1.6"
},
"devDependencies": {
"blanket": "*",
"body-parser": "^1.20.0",
"c8": "^7.11.3",
"chai": "*",
"codecov": "^3.8.3",
"cookie-parser": "^1.4.6",
"coveralls": "*",
"eslint": "^8.20.0",
"express": "^4.18.1",
"express-session": "^1.17.3",
"method-override": "^3.x",
"mocha": "*",
"nock": "*",
"passport": "*",
"sinon": "*",
"supertest": "*"
},
"scripts": {
"test": "c8 mocha test",
"test-debug": "mocha --inspect-brk test",
"test-w": "mocha --watch --parallel --reporter=min --watch-files='lib/**/*.js,test/**/*.js' test test/integration",
"integration": "mocha test/integration",
"coverage": "c8 report --reporter=text-lcov |codecov --pipe",
"lint": "eslint lib"
},
"engines": {
"node": ">= v14.15.0"
}
}