forked from mikenicholson/passport-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "passport-jwt",
"version": "4.0.0",
"description": "Passport authentication strategy using JSON Web Tokens",
"main": "./lib",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --require test/bootstrap test/*test.js",
"testcov": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/mikenicholson/passport-jwt.git"
},
"keywords": [
"Passport",
"Strategy",
"JSON",
"Web",
"Token",
"JWT"
],
"author": "Mike Nicholson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikenicholson/passport-jwt/issues"
},
"homepage": "https://github.com/mikenicholson/passport-jwt",
"devDependencies": {
"chai": "^3.0.0",
"chai-passport-strategy": "^1.0.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"sinon": "^1.0.0"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"passport-strategy": "^1.0.0"
}
}