-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
84 lines (84 loc) · 2.29 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
84
{
"name": "fast-jwt",
"version": "4.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 src/**/*.js test/**/*.js src/**/*.ts test/**/*.ts",
"test": "node --test --experimental-test-coverage && 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.1",
"asn1.js": "^5.4.1",
"ecdsa-sig-formatter": "^1.0.11",
"mnemonist": "^0.39.5"
},
"devDependencies": {
"@node-rs/jsonwebtoken": "^0.5.6",
"@sinonjs/fake-timers": "^13.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cronometro": "^4.0.0",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"fastify": "^5.0.0",
"jose": "^2.0.6",
"jsonwebtoken": "^9.0.0",
"prettier": "^3.0.0",
"tsd": "^0.31.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=20"
},
"tsd": {
"directory": "test"
}
}