This repository was archived by the owner on Aug 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "binary-nbt",
"version": "0.5.7",
"description": "A serializer and deserializer for Minecraft's NBT archives with a lossless but ergonomic output format",
"main": "lib/index.js",
"bin": "lib/bin.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --opts ../mocha.opts",
"compile": "tsc",
"lint": "tslint -c ../tslint.json -p ./tsconfig.json",
"prepare": "npm run compile",
"doc": "typedoc --out ../docs/binary-nbt --excludeNotExported --mode file",
"postpublish": "npm run doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Levertion/mcfunction.git"
},
"keywords": [
"Minecraft",
"nbt"
],
"author": "Levertion",
"contributors": [
"MrYurihi"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Levertion/mcfunction/issues"
},
"dependencies": {
"cac": "6.4.3",
"long": "4.0.0",
"mkdirp": "0.5.1",
"tslib": "1.9.3"
},
"devDependencies": {
"@types/long": "4.0.0",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.2.7",
"@types/node": "10.0.3",
"mocha": "6.1.4",
"ts-mocha": "6.0.0",
"tslint": "5.17.0",
"typedoc": "0.14.2",
"typescript": "3.9.2"
},
"homepage": "https://github.com/Levertion/mcfunction#readme",
"files": [
"lib/**"
]
}