forked from kmpm/node-mcquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 951 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
40
41
{
"name": "mcquery",
"description": "minecraft query protocol for node",
"keywords": [
"mcquery",
"protocol",
"query",
"minecraft"
],
"homepage": "https://github.com/kmpm/node-mcquery",
"author": "Peter Magnusson [email protected]",
"version": "0.2.6",
"main": "index.js",
"engines": {
"node": ">=v0.8.0"
},
"scripts": {
"test": "lab -c",
"lint": "jshint lib test examples index.js && jscs lib test examples index.js",
"coveralls": "lab -r lcov | ./node_modules/.bin/coveralls"
},
"bugs": {
"url": "http://github.com/kmpm/node-mcquery/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/kmpm/node-mcquery.git"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jscs": "^1.6.2",
"jshint": "^2.5.6",
"lab": "^5.1.0",
"xtend": "^4.0.0"
},
"dependencies": {
"buffercursor": "0.0.12",
"code": "^1.2.1",
"debug": "^2.0.0"
}
}