UNPKG

981 BJSONView Raw
1{
2 "name": "express-jwt",
3 "version": "5.1.0",
4 "description": "JWT authentication middleware.",
5 "keywords": [
6 "auth",
7 "authn",
8 "authentication",
9 "authz",
10 "authorization",
11 "http",
12 "jwt",
13 "token",
14 "oauth",
15 "express"
16 ],
17 "repository": {
18 "type": "git",
19 "url": "git://github.com/auth0/express-jwt.git"
20 },
21 "bugs": {
22 "url": "http://github.com/auth0/express-jwt/issues"
23 },
24 "author": {
25 "name": "Matias Woloski",
26 "email": "matias@auth0.com",
27 "url": "https://www.auth0.com/"
28 },
29 "licenses": [
30 {
31 "type": "MIT",
32 "url": "http://www.opensource.org/licenses/MIT"
33 }
34 ],
35 "main": "./lib",
36 "dependencies": {
37 "async": "^1.5.0",
38 "express-unless": "^0.3.0",
39 "jsonwebtoken": "~6.2.0",
40 "lodash.set": "^4.0.0"
41 },
42 "devDependencies": {
43 "mocha": "1.x.x"
44 },
45 "engines": {
46 "node": ">= 0.4.0"
47 },
48 "scripts": {
49 "test": "node_modules/.bin/mocha --reporter spec"
50 }
51}