-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@altalabs/ushark",
"version": "0.0.1",
"description": "Wireshark dissection for Nodejs",
"main": "index.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build"
},
"author": "altafinance",
"license": "GPL-2.0-or-later",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"@mmomtchev/node-pre-gyp-github": "^2.0.6",
"pcap": "^3.1.0"
},
"devDependencies": {
"node-addon-api": "^5.0.0",
"node-gyp": "^9.3.1"
},
"gypfile": true,
"binary": {
"module_name": "ushark",
"module_path": "./lib/binding/napi-v{napi_build_version}",
"remote_path": "{version}",
"package_name": "{platform}-{arch}-napi-v{napi_build_version}.tar.gz",
"host": "https://github.com/altafinance/ushark/releases/download/",
"napi_versions": [
6
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/altafinance/ushark.git"
},
"bugs": {
"url": "https://github.com/altafinance/ushark/issues"
},
"homepage": "https://github.com/altafinance/ushark",
"keywords": [
"wireshark",
"tshark",
"dpi"
]
}