-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 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
{
"author": "Timo Müller",
"bugs": {
"url": "https://github.com/Rafelder/knx-datapoints/issues"
},
"contributors": [
{
"name": "Bram Roelandts",
"url": "https://roelandts.cc/"
}
],
"description": "Decode and encode knx datapoint according to the knx datapoint types standard 2.1",
"devDependencies": {
"istanbul": "0.4.5",
"mocha": "8.3.0",
"range": "0.0.3",
"snazzy": "9.0.0",
"standard": "16.0.3"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/Rafelder/knx-datapoints#readme",
"keywords": [
"knx",
"dpt",
"datapoint",
"home-automation"
],
"license": "MIT",
"main": "./lib/dpt.js",
"name": "knx-datapoints",
"repository": {
"type": "git",
"url": "git+https://github.com/Rafelder/knx-datapoints.git"
},
"scripts": {
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- -u tdd ./tests/*",
"lint": "standard ./lib/**/*.js ./tests/**/*.js --verbose | snazzy",
"test": "mocha -u tdd ./tests/*"
},
"standard": {
"env": [
"node",
"mocha"
]
},
"version": "1.1.2",
"dependencies": {}
}