forked from lmammino/jwt-cracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.64 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
{
"name": "jwt-cracker",
"version": "4.1.0",
"description": "Simple HS256-512 JWT token brute force cracker",
"main": "index.js",
"type": "module",
"bin": {
"jwt-cracker": "index.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test:lint": "eslint .",
"test": "npm run test:lint && node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --silent"
},
"author": {
"name": "Luciano Mammino",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alexandre Zanni ",
"url": "https://github.com/noraj"
},
{
"name": "BigFax",
"url": "https://github.com/BigFax"
},
{
"name": "Carlos Aponte",
"url": "https://caponte.io"
},
{
"name": "Michael Di Prisco",
"url": "https://github.com/Cadienvan"
},
{
"name": "mvetsch",
"url": "https://github.com/mvetsch"
},
{
"name": "Rob Waller",
"url": "https://github.com/RobDWaller"
},
{
"name": "Flibustier",
"url": "https://github.com/flibustier"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lmammino/jwt-cracker"
},
"bugs": {
"url": "https://github.com/lmammino/jwtcracker/issues"
},
"homepage": "https://github.com/lmammino/jwtcracker#readme",
"license": "MIT",
"dependencies": {
"variations-stream": "^0.1.3",
"yargs": "^17.7.1"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0"
}
}