-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 844 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
{
"name": "thecombiner",
"version": "1.0.0",
"description": "Combines supplied words and generates all possible combinatios/permutations. Can also hash wordlist entries to look for an hash match",
"main": "dist/cli.js",
"bin": {
"thecombiner": "dist/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --watch 'src/**/*.ts' --ignore 'node_modules/**/*' --exec ts-node src/cli.ts",
"build": "tsc --project ./tsconfig.json",
"definitions": "tsc --declaration --outDir dist --emitDeclarationOnly",
"prepublishOnly": "npm run build && npm run definitions"
},
"keywords": [],
"author": "Luis Fontes",
"license": "MIT",
"dependencies": {
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@types/yargs": "^16.0.0"
}
}