-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.77 KB
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
68
69
70
71
72
{
"name": "express-jwt",
"version": "8.5.1",
"description": "JWT authentication middleware.",
"keywords": [
"auth",
"authn",
"authentication",
"authz",
"authorization",
"http",
"jwt",
"token",
"oauth",
"express"
],
"repository": {
"type": "git",
"url": "https://github.com/auth0/express-jwt.git"
},
"bugs": {
"url": "http://github.com/auth0/express-jwt/issues"
},
"author": {
"name": "Matias Woloski",
"email": "matias@auth0.com",
"url": "https://www.auth0.com/"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"dependencies": {
"@types/jsonwebtoken": "^9",
"express-unless": "^2.1.3",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.16",
"@types/mocha": "^9.1.0",
"@types/node": "^18.19.130",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"conventional-changelog": "^7.2.1",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^8.11.0",
"express": "^4.17.3",
"husky": "^9.1.7",
"mocha": "^10.2.0",
"prettier": "^2.6.0",
"semantic-release": "^25.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"build": "rm -rf dist ; tsc",
"prepare": "husky",
"test": "mocha --reporter spec --require ts-node/register test/**",
"lint": "eslint --fix --ext .ts ./src",
"update-changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md"
}
}