-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 874 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 874 Bytes
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
{
"name": "minecraft-protocol-forge",
"version": "1.1.0",
"description": "Adds FML/Forge support to node-minecraft-protocol",
"repository": {
"type": "git",
"url": "git://github.com/deathcap/node-minecraft-protocol-forge.git"
},
"scripts": {
"test": "npm run mochaTest",
"mochaTest": "mocha --recursive --reporter spec --exit",
"lint": "standard",
"fix": "standard --fix",
"pretest": "npm run lint"
},
"keywords": [
"minecraft",
"protocol",
"parse",
"serialize",
"packet",
"bot",
"forge",
"fml"
],
"author": "deathcap",
"license": "BSD-3-Clause",
"engines": {
"node": ">=4"
},
"dependencies": {
"minecraft-protocol": "^1.43.1",
"protodef": "^1.0.0"
},
"devDependencies": {
"mocha": "^11.0.1",
"standard": "^17.1.0",
"minecraft-protocol-forge":"file:."
}
}