-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.8 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
85
86
87
88
{
"name": "mharj-jwt-util",
"version": "0.7.0",
"description": "JWT util",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"scripts": {
"build": "tsup src/index.ts --minify --sourcemap --format cjs,esm --dts --clean",
"mocha": "mocha",
"test-all": "npm run lint && npm run mocha",
"prepublishOnly": "npm run build",
"test": "vitest test --run --no-isolate --coverage",
"azure-test": "vitest test --run --no-isolate --coverage",
"coverage": "vitest test --run --no-isolate --reporter=dot --coverage --coverage.reporter=lcov",
"lint": "eslint . --ext .ts",
"validate": "tsc --noEmit --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mharj/mharj-jwt-util.git"
},
"keywords": [
"jwt",
"jsonwebtoken",
"openid",
"util"
],
"author": "mharj",
"license": "MIT",
"bugs": {
"url": "https://github.com/mharj/mharj-jwt-util/issues"
},
"homepage": "https://github.com/mharj/mharj-jwt-util#readme",
"files": [
"dist"
],
"devDependencies": {
"@avanio/logger-like": "^0.2.7",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@swc/core": "^1.9.2",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.1.5",
"c8": "^10.1.2",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^0.25.1",
"google-auth-library": "^9.15.0",
"googleapis": "^144.0.0",
"jsonwebtoken": "^9.0.2",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"tachyon-drive": "^0.10.2",
"tachyon-drive-node-fs": "^0.10.1",
"tachyon-expire-cache": "^0.10.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vitest": "^2.1.4",
"zod": "^3.23.8"
},
"dependencies": {
"@avanio/auth-header": "^0.0.4",
"@avanio/expire-cache": "^0.6.3",
"@luolapeikko/cache-types": "^0.0.7"
},
"peerDependencies": {
"@avanio/logger-like": "^0.1 || ^0.2",
"jsonwebtoken": "^9",
"tachyon-drive": "^0.10",
"zod": "^3"
}
}