forked from node-pcap/node_pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 888 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
{
"name": "pcap",
"version": "2.1.0",
"description": "raw packet capture, decoding, and analysis",
"author": "Matt Ranney <[email protected]>",
"maintainers": [
"Ujjwal Thaakar <[email protected]>"
],
"main": "./pcap",
"repository": {
"type": "git",
"url": "git://github.com/mranney/node_pcap.git"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"nan": "^2.0.9",
"socketwatcher": "git+https://github.com/bytzdev/node-socketwatcher.git"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-coveralls": "^1.0.0",
"grunt-mocha-istanbul": "^2.3.1",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"mocha-sinon": "^1.1.4",
"should": "^5.0.0",
"sinon": "^1.14.1"
},
"scripts": {
"test": "grunt"
}
}