forked from baalexander/node-xmlrpc
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.11 KB
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
{
"name": "homematic-xmlrpc",
"description": "A pure JavaScript XML-RPC client and server.",
"keywords": [
"xml-rpc",
"xmlrpc",
"xml",
"rpc",
"homematic",
"bidcos"
],
"version": "1.0.2",
"preferGlobal": false,
"homepage": "https://github.com/hobbyquaker/homematic-xmlrpc",
"author": "hobbyquaker <hq@ccu.io> (https://github.com/hobbyquaker)",
"repository": {
"type": "git",
"url": "git://github.com/hobbyquaker/homematic-xmlrpc.git"
},
"bugs": {
"url": "https://github.com/hobbyquaker/homematic-xmlrpc/issues"
},
"directories": {
"example": "example",
"test": "test"
},
"main": "./lib/xmlrpc.js",
"dependencies": {
"sax": "0.4.x",
"xmlbuilder": "https://github.com/hobbyquaker/xmlbuilder-js/tarball/29fe5030dc6852007dc8d1bfd5109d75f8da58d5"
},
"devDependencies": {
"vows": "0.7.x"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">=0.8",
"npm": ">=1.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/baalexander/node-xmlrpc/raw/master/LICENSE"
}
],
"license": "MIT"
}