-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 846 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
{
"name": "nc",
"version": "1.0.3",
"description": "Porting Netcat in Node.js",
"main": "index.js",
"preferGlobal": true,
"bin": {
"nc": "./bin/nc.js"
},
"scripts": {
"test": "standard"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roccomuso/nc.git"
},
"keywords": [
"nc",
"netcat",
"tcp",
"udp",
"stream",
"socket",
"tool",
"cli",
"node",
"porting",
"pipe"
],
"author": "Rocco Musolino (roccomuso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/roccomuso/nc/issues"
},
"homepage": "https://github.com/roccomuso/nc#readme",
"devDependencies": {
"standard": "^16.0.4"
},
"dependencies": {
"debug": "^4.1.1",
"netcat": "^1.4.0",
"yargs": "^17.2.1"
}
}