-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
50 lines (50 loc) · 1.11 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
42
43
44
45
46
47
48
49
50
{
"name": "netcat",
"version": "1.5.0",
"description": "Netcat client and server modules written in pure Javascript for Node.js",
"main": "index.js",
"scripts": {
"test": "standard && tape ./tests/**/*.js | tap-spec",
"tcp": "tape ./tests/tcp.js | tap-spec",
"udp": "tape ./tests/udp.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roccomuso/netcat.git"
},
"engines": {
"node": ">=10.8.0"
},
"keywords": [
"netcat",
"nc",
"net",
"shell",
"js",
"node",
"tcp",
"udp",
"server",
"swissarmyknife"
],
"author": "Rocco Musolino (@roccomuso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/roccomuso/netcat/issues"
},
"homepage": "https://github.com/roccomuso/netcat#readme",
"devDependencies": {
"concat-stream": "^1.6.2",
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"dependencies": {
"async-each-series": "^1.1.0",
"datagram-stream": "^1.1.1",
"debug": "^4.0.1",
"hexer": "^1.5.0",
"nanoid": "^2.0.0",
"through2": "^3.0.0"
}
}