-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.11 KB
/
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
42
43
44
45
46
47
{
"name": "mcquery",
"description": "minecraft query protocol for node",
"license": "MIT",
"keywords": [
"mcquery",
"protocol",
"query",
"minecraft"
],
"homepage": "https://github.com/kmpm/node-mcquery",
"author": "Peter Magnusson <[email protected]>",
"version": "1.0.3",
"main": "index.js",
"engines": {
"node": ">=v8.0.0"
},
"scripts": {
"test": "lab -c",
"lint": "eslint 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": {
"@hapi/lab": "^22.0.5",
"acorn": "^7.4.1",
"coveralls": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"xtend": "^4.0.2"
},
"dependencies": {
"buffercursor": "0.0.12",
"code": "^5.2.4",
"debug": "^4.3.1"
}
}