UNPKG

1.34 kBJSONView Raw
1{
2 "name": "express-jwt",
3 "version": "7.4.1",
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 "license": "MIT",
30 "main": "./dist",
31 "dependencies": {
32 "express-unless": "^1.0.0",
33 "jsonwebtoken": "^8.5.1"
34 },
35 "devDependencies": {
36 "@types/express-unless": "^0.5.3",
37 "@types/jsonwebtoken": "^8.5.8",
38 "@types/mocha": "^9.1.0",
39 "@typescript-eslint/eslint-plugin": "^5.15.0",
40 "@typescript-eslint/parser": "^5.15.0",
41 "conventional-changelog": "^3.1.25",
42 "eslint": "^8.11.0",
43 "express": "^4.17.3",
44 "mocha": "^9.2.2",
45 "prettier": "^2.6.0",
46 "ts-node": "^10.7.0",
47 "typescript": "^4.6.2"
48 },
49 "engines": {
50 "node": ">= 8.0.0"
51 },
52 "scripts": {
53 "build": "rm -rf dist ; tsc",
54 "prepare": "npm run build",
55 "test": "mocha --reporter spec --require ts-node/register test/**",
56 "lint": "eslint --fix --ext .ts ./src"
57 }
58}