-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "passport-oauth2-refresh",
"version": "2.2.0",
"description": "A passport.js add-on to provide automatic OAuth 2.0 token refreshing.",
"main": "lib/refresh.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint \"**/*.js\" --fix",
"prettier": "prettier --write .",
"test": "prettier --check . && mocha test/refresh.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fiznool/passport-oauth2-refresh.git"
},
"keywords": [
"passport",
"oauth",
"oauth2",
"auth",
"authentication"
],
"author": {
"name": "Tom Spencer",
"email": "[email protected]",
"url": "https://github.com/fiznool"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fiznool/passport-oauth2-refresh/issues"
},
"homepage": "https://github.com/fiznool/passport-oauth2-refresh",
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"prettier": "^2.3.2",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">=10"
}
}