forked from node-pcap/node_pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 887 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
{
"name": "pcap",
"version": "3.1.0",
"description": "raw packet capture, decoding, and analysis",
"author": "Matt Ranney <mjr@ranney.com>",
"license": "MIT",
"maintainers": [
"Ujjwal Thaakar <ujjwalthaakar@gmail.com>"
],
"main": "./pcap",
"types": "pcap.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/node-pcap/node_pcap.git"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@types/node": "^10.0.0",
"nan": "^2.14.0"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-jshint": "^2.1.0",
"grunt-coveralls": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"mocha-sinon": "^1.1.4",
"should": "^5.0.0",
"sinon": "^1.14.1"
},
"scripts": {
"test": "grunt"
}
}