forked from blacha/diablo2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 800 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": "@diablo2/sniffer",
"version": "0.9.0",
"repository": {
"type": "git",
"url": "https://github.com/blacha/diablo2.git",
"directory": "packages/sniffer"
},
"author": {
"name": "Blayne Chard",
"email": "[email protected]"
},
"type": "module",
"license": "MIT",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "ospec --globs 'build/**/*.test.js'"
},
"dependencies": {
"@diablo2/core": "^0.9.0",
"@diablo2/huffman": "^0.9.0",
"@diablo2/packets": "^0.9.0",
"@types/pino": "^6.3.0",
"ansi-colors": "^4.1.1",
"pcap": "^3.1.0",
"pino": "^6.5.1",
"pretty-json-log": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/"
],
"peerDependencies": {}
}