-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
39 lines (39 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
{
"name": "prismarine-nbt",
"version": "2.6.0",
"description": "A parser and serializer for NBT archives",
"keywords": [
"nbt",
"minecraft"
],
"homepage": "https://github.com/prismarinejs/prismarine-nbt",
"author": "roblabla <robinlambertz+dev@gmail.com>",
"maintainers": [
"roblabla <robinlambertz+dev@gmail.com",
"Will Franzen <wtfranzen@gmail.com> (http://will.xyz/)",
"Dennis Bartlett <bartlett.dc.1@gmail.com>",
"Romain Beaumont <romain.rom1@gmail.com>"
],
"main": "nbt",
"types": "./typings/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/prismarinejs/prismarine-nbt.git"
},
"devDependencies": {
"@types/node": "^20.11.24",
"chai": "^4.2.0",
"mocha": "^10.0.0",
"standard": "^17.0.0"
},
"scripts": {
"test": "mocha --reporter spec",
"pretest": "npm run lint",
"lint": "standard",
"fix": "standard --fix"
},
"dependencies": {
"protodef": "^1.9.0"
},
"license": "MIT"
}