-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 948 Bytes
/
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
{
"name": "jwt-secret",
"version": "1.1.1",
"description": "Bruteforce a JWT against a list of passwords",
"license": "MIT",
"repository": "timhudson/jwt-secret",
"author": {
"name": "Tim Hudson",
"email": "[email protected]"
},
"bin": {
"jwt-secret": "cli.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"index.js"
],
"keywords": [
"jwt",
"bruteforce",
"crack",
"password"
],
"dependencies": {
"binary-split": "^1.0.3",
"chalk": "^1.1.3",
"jwa": "^1.1.3",
"jws": "^3.1.3",
"log-update": "^1.0.2",
"meow": "^3.7.0",
"numeral": "^1.5.3",
"ora": "^0.3.0",
"through2": "^2.0.1"
},
"devDependencies": {
"ava": "^0.16.0",
"execa": "^0.5.0",
"jsonwebtoken": "^7.1.9",
"xo": "^0.17.0"
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false
}
}