-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 942 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
{
"name": "tcp-port-scaner",
"version": "0.0.1",
"description": "A Multi Thread TCP Port Scaner",
"author": "DragonCat",
"license": "MIT",
"main": "build/index.js",
"dependencies": {
"commander": "^8.1.0",
"ip": "^1.1.5"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"@types/node": "^16.4.5",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "tsc --watch",
"build": "rm -rf build && tsc"
},
"bin": {
"portscan": "./build/cli.js"
},
"files": [
"build"
],
"types": "build/types/index.d.ts",
"homepage": "https://github.com/DragonCat1/tcp-port-scaner",
"repository": {
"type": "git",
"url": "[email protected]:DragonCat1/tcp-port-scaner.git"
},
"keywords": [
"port scan",
"scaner",
"tcp",
"network",
"cli",
"tool"
]
}