-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "distributed-jwt-cracker",
"version": "1.0.0",
"description": "An experimental distributed JWT token cracker built using Node.js and ZeroMQ",
"bin": {
"jwt-cracker-server": "src/server.js",
"jwt-cracker-client": "src/client.js"
},
"files": [
"src/"
],
"preferGlobal": true,
"scripts": {
"lint": "./node_modules/.bin/eslint src/ test/",
"test": "npm run lint && node_modules/.bin/tap test/**/*.test.js --coverage | node_modules/.bin/tap-spec",
"posttest": "node_modules/.bin/tap --coverage-report=lcov && node_modules/.bin/codecov"
},
"author": {
"name": "Luciano Mammino",
"email": "[email protected]",
"url": "http://loige.co"
},
"repository": {
"type": "git",
"url": "https://github.com/lmammino/distributed-jwt-cracker"
},
"license": "MIT",
"engines": {
"node": ">=6"
},
"engineStrict": true,
"dependencies": {
"big-integer": "^1.6.16",
"dateformat": "^1.0.12",
"indexed-string-variation": "^1.0.2",
"jsonwebtoken": "^8.2.2",
"winston": "^2.2.0",
"yargs": "^5.0.0",
"zmq": "^2.15.3"
},
"keywords": [
"jwt",
"token",
"cracker",
"brute force",
"password",
"brute force",
"HS256",
"secret",
"break"
],
"devDependencies": {
"babel-eslint": "^6.1.2",
"codecov": "^1.0.1",
"eslint": "^3.5.0",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-babel": "^3.3.0",
"mock-require": "^1.3.0",
"sinon": "^1.17.5",
"tap": "^7.1.2",
"tap-spec": "^4.1.1"
},
"eslintConfig": {
"extends": "xo-space/esnext"
}
}