-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
83 lines (83 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fast-jwt",
"version": "5.0.5",
"description": "Fast JSON Web Token implementation",
"author": "NearForm Ltd",
"homepage": "https://github.com/nearform/fast-jwt",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "Matteo Collina",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"jwt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fast-jwt.git"
},
"bugs": {
"url": "https://github.com/nearform/fast-jwt/issues"
},
"main": "src/index.js",
"typings": "src/index.d.ts",
"types": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"postpublish": "git push origin && git push origin -f --tags",
"lint": "eslint .",
"test": "node --test --experimental-test-coverage test/**.spec.js && tsd",
"test:ci": "npm run lint && npm run test",
"test:watch": "node --test --watch --experimental-test-coverage",
"test:generate-keys": "node benchmarks/keys/generate-keys.js",
"test:generate-tokens": "node benchmarks/keys/generate-tokens.js",
"benchmark:sign": "node benchmarks/sign.mjs",
"benchmark:decode": "node benchmarks/decode.mjs",
"benchmark:verify": "node benchmarks/verify.mjs",
"benchmark:auth0": "node benchmarks/auth0.mjs"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"asn1.js": "^5.4.1",
"ecdsa-sig-formatter": "^1.0.11",
"mnemonist": "^0.39.8"
},
"devDependencies": {
"@node-rs/jsonwebtoken": "^0.5.9",
"@types/node": "^22.10.2",
"cronometro": "^4.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"fastify": "^5.2.0",
"jose": "^2.0.7",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.4.2",
"tsd": "^0.31.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=20"
},
"tsd": {
"directory": "test"
}
}