forked from node-pcap/node_pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 955 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
{
"name": "@constell8/pcap",
"version": "0.0.8",
"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": "git://github.com/Bartel-C8/node_pcap.git"
},
"os": [
"darwin"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@types/node": "^18.18.9",
"nan": "^2.18.0",
"node-gyp": "^10.0.1"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-coveralls": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"mocha-sinon": "^1.2.0",
"should": "^5.2.0",
"sinon": "^1.17.7"
},
"scripts": {
"test": "grunt"
}
}