forked from amrav/restify-jwt
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
68
{
"name": "restify-jwt-community",
"version": "2.0.0",
"description": "JWT authentication middleware for Restify",
"keywords": [
"auth",
"authentication",
"authorization",
"http",
"jwt",
"token",
"oauth",
"restify"
],
"main": "./lib",
"author": {
"name": "Francisco Buceta",
"email": "[email protected]",
"url": "https://github.com/frbuceta"
},
"license": "MIT",
"homepage": "https://github.com/frbuceta/restify-jwt-community#readme",
"bugs": "https://github.com/frbuceta/restify-jwt-community/issues",
"repository": "github:frbuceta/restify-jwt-community",
"engines": {
"node": ">= 4.0"
},
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node node_modules/.bin/jest",
"test:dev": "node_modules/.bin/jest --watch",
"test:coverage": "node node_modules/.bin/jest --coverage"
},
"files": [
"readme.md",
"lib",
"test"
],
"dependencies": {
"async": "^3.2.4",
"express-unless": "^2.1.3",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "^9.11.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/restify-errors": "4.3.9",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.11.1",
"eslint-plugin-jest": "28.8.3",
"globals": "^15.10.0",
"husky": "9.1.6",
"jest": "29.7.0",
"restify": "^11.1.0",
"restify-errors": "^8.0.2",
"semantic-release": "24.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}