forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.16 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
48
49
50
51
52
53
54
55
{
"name": "gbxremote",
"description": "A pure JavaScript GBXRemote client.",
"keywords": [
"xml-rpc",
"xmlrpc",
"xml",
"rpc",
"gbxremote",
"maniaplanet",
"trackmania",
"shootmania",
"questmania",
"nadeo"
],
"version": "0.2.1",
"preferGlobal": false,
"homepage": "https://github.com/MiniGod/node-gbxremote",
"author": "Kristjan Broder Lund <[email protected]> (https://github.com/MiniGod)",
"repository": {
"type": "git",
"url": "git://github.com/MiniGod/node-gbxremote.git"
},
"bugs": {
"url": "https://github.com/MiniGod/node-gbxremote/issues"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/gbxremote.js",
"dependencies": {
"any-promise": "^1.1.0",
"barse": "~0.4.2",
"event-to-promise": "^0.7.0",
"string-to-stream": "^1.0.1",
"xmlrpc": "^1.3.1"
},
"devDependencies": {
"nodemon": "^1.8.1",
"xo": "^0.12.1"
},
"scripts": {
"watch": "nodemon -x npm test",
"test": "xo"
},
"engines": {
"node": ">=0.10"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MiniGod/node-gbxremote/raw/master/LICENSE"
}
]
}