-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "zipcracker",
"version": "0.0.1",
"description": "Cracks zip files from wordlist",
"main": "./lib/index.js",
"bin": {
"zipcracker": "./lib/index.js"
},
"scripts": {
"test": "jest",
"build": "tsc -p ./ && npm install -g",
"watch": "npm t -- --watch",
"setup": "tsc -p ./ && npm install -g"
},
"author": "Simon Pilepich",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.1",
"@types/unzipper": "^0.9.2",
"@types/commander": "^2.9.1",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/event-stream": "^3.3.34",
"commander": "^2.20.0",
"event-stream": "^4.0.1",
"minizip-asm.js": "^1.0.10"
},
"repository": "https://github.com/sobil/zipcracker"
}