-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.27 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
{
"name": "jwt-authn",
"version": "2.2.0",
"description": "JWT decoder, encoder, and more with only Node >=18.18.2 as a requirement and clipboardy as the only dependency.",
"author": "Anthony Dombrowski",
"license": "MIT",
"homepage": "https://github.com/akdombrowski/jwt-authn#readme",
"bugs": {
"url": "https://github.com/akdombrowski/jwt-authn/issues"
},
"main": "./lib/index.min.js",
"bin": {
"jwt": "cli_lib/index.min.js"
},
"type": "module",
"files": [
"./src/index.min.js",
"./cli_lib/index.min.js",
"./lib/index.min.js"
],
"scripts": {
"prepare": "yarn build",
"build": "yarn babelify && yarn tersify",
"test": "cross-env NODE_ENV=test yarn run nycest",
"nycest": "nyc mocha test",
"mocha": "mocha test",
"babelify": "babel ./src/index.js -o ./lib/index.js && babel ./cli/index.js -o ./cli_lib/index.js",
"tersify": "terser ./src/index.js -f quote_style=2 -o ./src/index.min.js -c -m --sourcemap && terser ./cli/index.js -f quote_style=2 -o ./cli/index.min.js -c -m --sourcemap && terser ./cli_lib/index.js -f quote_style=2 -o ./cli_lib/index.min.js -c -m --sourcemap && terser ./lib/index.js -f quote_style=2 -o ./lib/index.min.js -c -m --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akdombrowski/jwt-authn.git"
},
"keywords": [
"jwt",
"decoder",
"encoder",
"jot",
"oauth",
"oauth2.0",
"authentication",
"authorization",
"jwt-decoder",
"jwt-encoder",
"token",
"jwt decoder",
"jwt encoder",
"JSON",
"crypto",
"nodejs",
"authn",
"authz",
"sha256",
"rs256",
"hs256",
"jws",
"alg",
"verify",
"sign",
"signature",
"header",
"payload",
"base64url"
],
"engines": {
"node": ">=15.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^7.0.0",
"braces": ">=3.0.3",
"chai": "*",
"cross-env": "^7.0.3",
"mocha": "*",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"terser": "^5.36.0"
},
"dependencies": {
"clipboardy": "^4.0.0"
},
"packageManager": "[email protected]"
}