-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1005 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
40
41
{
"name": "minecraft-chunk-dumper",
"version": "1.3.0",
"description": "Dumps chunks for any minecraft version",
"main": "index.js",
"bin": {
"minecraftChunkDumper": "./bin/cmd.js"
},
"scripts": {
"test": "mocha",
"lint": "standard",
"pretest": "npm run lint",
"fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrismarineJS/minecraft-chunk-dumper.git"
},
"keywords": [
"minecraft",
"dumper",
"chunk"
],
"author": "Romain Beaumont <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrismarineJS/minecraft-chunk-dumper/issues"
},
"homepage": "https://github.com/PrismarineJS/minecraft-chunk-dumper#readme",
"devDependencies": {
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"debug": "^4.0.1",
"minecraft-data": "^3.0.0",
"minecraft-protocol": "^1.11.0",
"minecraft-wrap": "^1.2.3",
"minimist": "^1.2.0"
}
}