forked from PrismarineJS/node-minecraft-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
54
55
{
"name": "minecraft-protocol",
"version": "1.5.3",
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/PrismarineJS/node-minecraft-protocol.git"
},
"scripts": {
"prepublish": "require-self",
"test": "mocha --recursive --reporter spec",
"lint": "standard",
"pretest": "npm run lint"
},
"keywords": [
"minecraft",
"protocol",
"parse",
"serialize",
"packet",
"authentication",
"encrypton",
"bot"
],
"author": "Andrew Kelley",
"license": "BSD-3-Clause",
"engines": {
"node": ">=6"
},
"browser": "src/browser.js",
"devDependencies": {
"espower-loader": "^1.0.0",
"intelli-espower-loader": "^1.0.0",
"minecraft-wrap": "^1.0.0",
"mocha": "^5.0.5",
"power-assert": "^1.0.0",
"require-self": "^0.2.1",
"standard": "^11.0.1"
},
"dependencies": {
"buffer-equal": "^1.0.0",
"debug": "^3.0.0",
"endian-toggle": "^0.0.0",
"lodash.get": "^4.1.2",
"lodash.merge": "^4.3.0",
"minecraft-data": "^2.26.0",
"node-rsa": "^0.4.2",
"prismarine-nbt": "^1.2.0",
"protodef": "^1.6.7",
"readable-stream": "^2.0.5",
"uuid-1345": "^0.99.6",
"yggdrasil": "^1.1.1"
}
}