generated from PrismarineJS/prismarine-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "prismarine-packet-dumper",
"version": "1.7.0",
"description": "Automatically dump packets from a Minecraft server",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --exit",
"pretest": "npm run lint && require-self",
"prepare": "npm install require-self && require-self",
"lint": "standard",
"fix": "standard --fix"
},
"author": "iczero",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/prismarine-packet-dumper.git"
},
"bugs": {
"url": "https://github.com/PrismarineJS/prismarine-packet-dumper/issues"
},
"homepage": "https://github.com/PrismarineJS/prismarine-packet-dumper#readme",
"dependencies": {
"got": "^14.0.0",
"minecraft-wrap": "^1.2.3",
"mineflayer": "^4.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"mocha": "^10.0.0",
"require-self": "^0.2.3",
"standard": "^17.0.0"
},
"keywords": [
"prismarine"
],
"bin": {
"dumpPackets": "./bin/dumpPackets.js",
"clientProxy": "./bin/clientProxy.js",
"metricAggregator": "./bin/metricAggregator.js"
}
}