mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-30 03:05:37 -05:00
Merge pull request #140 from wtfaremyinitials/fix-122
Give each example its own package.json
This commit is contained in:
commit
13f9ce0d84
11 changed files with 47 additions and 3 deletions
10
examples/client_chat/package.json
Normal file
10
examples/client_chat/package.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"name": "node-minecraft-protocol-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"ansi-color": "^0.2.1",
|
||||
"readline": "0.0.7"
|
||||
},
|
||||
"description": "A node-minecraft-protocol example"
|
||||
}
|
9
examples/client_echo/package.json
Normal file
9
examples/client_echo/package.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "node-minecraft-protocol-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
||||
},
|
||||
"description": "A node-minecraft-protocol example"
|
||||
}
|
9
examples/proxy/package.json
Normal file
9
examples/proxy/package.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "node-minecraft-protocol-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"buffertools": "^2.1.2"
|
||||
},
|
||||
"description": "A node-minecraft-protocol example"
|
||||
}
|
9
examples/server/package.json
Normal file
9
examples/server/package.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "node-minecraft-protocol-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
||||
},
|
||||
"description": "A node-minecraft-protocol example"
|
||||
}
|
9
examples/server_helloworld/package.json
Normal file
9
examples/server_helloworld/package.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"name": "node-minecraft-protocol-example",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
|
||||
},
|
||||
"description": "A node-minecraft-protocol example"
|
||||
}
|
|
@ -36,11 +36,9 @@
|
|||
"mocha": "~1.8.2",
|
||||
"rimraf": "~2.1.1",
|
||||
"zfill": "0.0.1",
|
||||
"batch": "~0.3.1",
|
||||
"buffertools": "^2.1.2"
|
||||
"batch": "~0.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"ansi-color": "0.2.1",
|
||||
"buffer-equal": "0.0.0",
|
||||
"node-uuid": "~1.4.1",
|
||||
"prismarine-nbt": "0.0.1",
|
||||
|
|
Loading…
Reference in a new issue