forked from dominicbarnes/node-minecraft-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 700 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 700 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
{
"name": "minecraft-runner",
"version": "0.0.5",
"description": "A node module meant to manage a minecraft server instance",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/dominicbarnes/node-minecraft-runner.git"
},
"keywords": [
"minecraft",
"server",
"game",
"runner",
"events"
],
"author": "Dominic Barnes <dominic@dbarnes.info>",
"license": "MIT",
"devDependencies": {
"mocha": "~1.8.1",
"should": "~1.2.1",
"mkdirp": "~0.3.5",
"rimraf": "~2.2.2"
},
"dependencies": {
"lodash": "~1.0",
"nop": "0.0.0",
"byline": "*"
}
}