-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.46 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "express-jwt-decode",
"version": "1.0.0",
"description": "JWT decoding middleware.",
"keywords": [
"decode",
"decoding",
"payload",
"middleware",
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"token",
"oauth",
"express",
"connect"
],
"repository": {
"type": "git",
"url": "git://github.com/loucadufault/express-jwt-decode.git"
},
"bugs": {
"url": "http://github.com/auth0/express-jwt-decode/issues"
},
"author": {
"name": "Louca Dufault",
"email": "louca.developer@gmail.com"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"@types/jsonwebtoken": "^9",
"@types/jws": "^3.2.4",
"jws": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.16",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"conventional-changelog": "^3.1.25",
"eslint": "^8.11.0",
"express": "^4.17.3",
"jsonwebtoken": "^9.0.0",
"mocha": "^10.2.0",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"build": "rm -rf dist ; tsc",
"prepare": "npm run build",
"test": "mocha --reporter spec --require ts-node/register test/**",
"lint": "eslint --fix --ext .ts ./src"
}
}