-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"version": "3.3.1",
"name": "binrpc",
"description": "HomeMatic binary RPC protocol - xmlrpc_bin://",
"homepage": "https://github.com/hobbyquaker/binrpc",
"author": "Sebastian 'hobbyquaker' Raff <hobbyquaker@gmail.com>",
"contributors": [
"Ingo 'Apollon77' Fischer (https://github.com/Apollon77)",
"Mik- https://github.com/Mik-",
"Vegetto https://github.com/angelnu",
"Benjamin Kroeger https://github.com/benkroeger"
],
"keywords": [
"HomeMatic",
"binrpc",
"xmlrpc_bin",
"BidCos",
"CUxD",
"Homegear",
"rfd",
"hs485d"
],
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/binrpc.git"
},
"main": "./lib/binrpc.js",
"dependencies": {
"binary": "^0.3.0",
"put": "0.0.6"
},
"bugs": {
"url": "https://github.com/hobbyquaker/binrpc/issues"
},
"scripts": {
"test": "xo lib/* && nyc mocha --exit tests/* && nyc report --reporter=text-lcov | coveralls --force"
},
"license": "MIT",
"devDependencies": {
"camo-purge": "latest",
"coveralls": "latest",
"grunt": "latest",
"grunt-cli": "latest",
"grunt-contrib-concat": "latest",
"grunt-jsdoc-to-markdown": "latest",
"grunt-shell": "latest",
"mocha": "latest",
"nyc": "latest",
"should": "latest",
"xo": "latest"
},
"directories": {
"test": "tests"
},
"xo": {
"esnext": false,
"space": 4,
"ignore": [
"tests/*.js",
"example.js",
"Gruntfile.js"
]
},
"nyc": {
"exclude": [
"tests/*.js",
"example.js",
"Gruntfile.js"
]
},
"engines": {
"node": ">4.0.0"
}
}