-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.76 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "over-the-wire",
"version": "1.0.3",
"description": "Network inspection library for Node",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vaguue/over-the-wire.git"
},
"homepage": "https://github.com/vaguue/over-the-wire",
"bugs": {
"url": "https://github.com/vaguue/over-the-wire/issues"
},
"author": "Seva D. <sabrinarempel7@gmail.com>",
"scripts": {
"install": "prebuild-install -r node || cmake-js compile",
"rebuild-debug": "cmake-js compile -D",
"build-debug": "cmake-js build -D",
"rebuild": "cmake-js compile",
"precompile": "prebuild --backend cmake-js -r node -t 16.0.0 -t 17.0.0 -t 18.0.0 -t 19.0.0 -t 20.0.0 -t 21.0.0 -t 22.0.0",
"build": "cmake-js build",
"test": "node --test test/*.test.js",
"test-cov-text": "node --test --experimental-test-coverage test/*.test.js",
"test-cov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info test/*.test.js",
"generate-docs": "jsdoc --configure jsdoc.json --verbose"
},
"imports": {
"#lib/*": "./lib/*.js"
},
"keywords": [
"security",
"pcap",
"network",
"packet-analyser",
"packet-sniffer",
"network-discovery",
"network-analysis",
"packet-crafting",
"packet-capture",
"network-security",
"security-tools"
],
"license": "ISC",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0",
"prebuild": "^13.0.1",
"@vaguuue/prebuild-install": "^7.1.2",
"struct-compile": "^1.2.2"
},
"engines": {
"node": ">=16.10.0"
},
"files": [
"assets",
"lib",
"test"
],
"devDependencies": {
"clean-jsdoc-theme": "^4.3.0",
"cmake-js": "^7.2.1",
"jsdoc": "^4.0.2"
}
}