forked from node-pcap/node_pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "@audc/pcap",
"version": "4.0.11",
"description": "raw packet capture, decoding, and analysis",
"author": "Matt Ranney <[email protected]>",
"license": "MIT",
"maintainers": [
"Ujjwal Thaakar <[email protected]>"
],
"main": "./pcap",
"types": "pcap.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/audiocodes/node_pcap"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install": "prebuild-install || (node-gyp rebuild --release -j max && node-gyp clean)",
"rebuild": "node-gyp rebuild --release -j max",
"test": "grunt"
},
"binary": {
"module_path": "out"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^20.17.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^25.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^10.8.1",
"mocha-sinon": "^2.1.2",
"should": "^13.2.3",
"sinon": "^19.0.2"
},
"dependencies": {
"nan": "^2.22.0",
"prebuild-install": "^7.1.2"
}
}