-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 921 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
42
{
"name": "nbt-dump",
"version": "1.1.0",
"description": "Read and write Minecraft Named Binary Tag files in big, little and little-varint encoding",
"main": "lib.js",
"bin": {
"nbt-dump": "./cli.js"
},
"scripts": {
"lint": "standard",
"fix": "standard --fix",
"pretest": "npm run lint",
"test": "mocha --bail --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extremeheat/nbt-dump.git"
},
"keywords": [
"minecraft",
"nbt",
"named",
"binary",
"tag",
"cli",
"bedrock"
],
"author": "extremeheat",
"license": "MIT",
"bugs": {
"url": "https://github.com/extremeheat/nbt-dump/issues"
},
"homepage": "https://github.com/extremeheat/nbt-dump#readme",
"dependencies": {
"prismarine-nbt": "^2.0.0"
},
"devDependencies": {
"mocha": "^10.3.0",
"standard": "^17.1.0",
"nbt-dump": "file:."
}
}