-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
{
"name": "token-verify",
"version": "0.1.7",
"description": "Token client for verifying and decoding JWTs.",
"author": "NorthOne <developers@northone.com>",
"license": "MIT",
"homepage": "https://github.com/northone-inc/token-verify",
"repository": {
"type": "git",
"url": "https://github.com/northone-inc/token-verify.git"
},
"keywords": [
"token",
"jwt",
"jsonwebtoken",
"jwks-rsa",
"token-decode",
"authentication",
"oauth"
],
"main": "dist/jwt.js",
"types": "dist/jwt.d.ts",
"files": [
"dist/jwt.js",
"dist/jwt.d.ts",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "esbuild src/jwt.ts --bundle --outdir=dist --platform=node --external:jsonwebtoken --external:jwks-rsa",
"test": "vitest",
"test:dist": "cross-env VITEST_USE_DIST=true npm run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typegen": "tsc src/jwt.ts --declaration --emitDeclarationOnly --outDir dist",
"postbuild": "npm run typegen",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"contributers": [
"Duncan Mann <duncan@northone.com>"
],
"dependencies": {
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.29.4",
"@tsconfig/node16": "^1.0.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"husky": "^8.0.2",
"mock-jwks": "^1.0.8",
"nock": "^13.2.9",
"typescript": "^4.8.4",
"vitest": "^0.25.1"
}
}