UNPKG

894 BJSONView Raw
1{
2 "name": "passport-jwt",
3 "version": "0.1.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 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/themikenicholson/passport-jwt.git"
12 },
13 "keywords": [
14 "Passport",
15 "Strategy",
16 "JSON",
17 "Web",
18 "Token",
19 "JWT"
20 ],
21 "author": "Mike Nicholson",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/themikenicholson/passport-jwt/issues"
25 },
26 "homepage": "https://github.com/themikenicholson/passport-jwt",
27 "devDependencies": {
28 "chai": "^1.9.2",
29 "chai-passport-strategy": "^0.2.0",
30 "mocha": "^2.0.1",
31 "sinon": "^1.11.1"
32 },
33 "dependencies": {
34 "jsonwebtoken": "^1.1.2",
35 "passport-strategy": "^1.0.0"
36 }
37}