forked from fastify/fastify-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "fastify-jwt",
"version": "4.1.3",
"description": "JWT utils for Fastify",
"main": "jwt.js",
"types": "jwt.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit && npm run test:typescript",
"test:typescript": "tsd",
"unit": "tap -J test/*.test.js",
"unit:report": "npm run unit -- --cov --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-jwt.git"
},
"keywords": [
"jwt",
"json",
"token",
"jsonwebtoken",
"fastify"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-jwt/issues"
},
"homepage": "https://github.com/fastify/fastify-jwt#readme",
"dependencies": {
"@lukeed/ms": "^2.0.0",
"fast-jwt": "^1.4.0",
"fastify-plugin": "^3.0.0",
"http-errors": "^2.0.0",
"steed": "^1.1.3"
},
"devDependencies": {
"@types/node": "^17.0.0",
"fastify": "^3.24.0",
"fastify-cookie": "^5.4.0",
"pre-commit": "^1.2.2",
"standard": "^16.0.4",
"tap": "^15.1.2",
"tsd": "^0.19.0",
"typescript": "^4.5.2"
},
"tsd": {
"directory": "test/types"
}
}