-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 927 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
{
"name": "dcipher",
"version": "1.1.2",
"description": "Decipher hashes using online rainbow & lookup table attack services.",
"license": "MIT",
"repository": "k4m4/dcipher",
"author": {
"name": "Nikolaos Kamarinakis",
"url": "https://nikolaskama.me",
"email": "[email protected]"
},
"ava": {
"babel": true
},
"engines": {
"node": ">=4"
},
"main": "index.js",
"scripts": {
"test": "ava"
},
"keywords": [
"hash",
"decipher",
"crack",
"password",
"lookup",
"table",
"cracking",
"ctf"
],
"files": [
"index.js"
],
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.5.2"
},
"dependencies": {
"arrify": "^1.0.1",
"cheerio": "^1.0.0-rc.2",
"hash-detector": "^1.3.0",
"p-any": "^1.1.0",
"p-timeout": "^2.0.1",
"pify": "^3.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2"
}
}