UNPKG

1.01 kBJSONView Raw
1{
2 "name": "passport-jwt",
3 "version": "2.2.0",
4 "description": "Passport authentication strategy using JSON Web Tokens",
5 "main": "./lib",
6 "scripts": {
7 "test": "./node_modules/.bin/mocha --reporter spec --require test/bootstrap test/*test.js",
8 "testcov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec --require test/bootstrap test/*test.js"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/themikenicholson/passport-jwt.git"
13 },
14 "keywords": [
15 "Passport",
16 "Strategy",
17 "JSON",
18 "Web",
19 "Token",
20 "JWT"
21 ],
22 "author": "Mike Nicholson",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/themikenicholson/passport-jwt/issues"
26 },
27 "homepage": "https://github.com/themikenicholson/passport-jwt",
28 "devDependencies": {
29 "chai": "^1.9.2",
30 "chai-passport-strategy": "^0.2.0",
31 "mocha": "^2.0.1",
32 "sinon": "^1.11.1"
33 },
34 "dependencies": {
35 "jsonwebtoken": "^5.0.0",
36 "passport-strategy": "^1.0.0"
37 }
38}