-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
81 lines (81 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "node-red-contrib-coap",
"version": "0.8.0",
"description": "CoAP support in Node-RED",
"dependencies": {
"cbor": "^10.0.2",
"coap": "^1.4.0",
"h5.linkformat": "0.0.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"jshint": "^2.13.4",
"mocha": "^10.0.0",
"node-red": "^4.0.2",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^17.0.0"
},
"scripts": {
"test": "nyc mocha --exit",
"coverage": "nyc report --reporter=lcov --reporter=text-summary",
"jshint": "jshint coap"
},
"mocha": {
"globals": [
"expect"
],
"ignoreLeaks": false,
"ui": "bdd",
"reporter": "spec"
},
"jshintConfig": {
"esversion": 11,
"curly": true,
"forin": true,
"immed": true,
"nonbsp": true,
"strict": true,
"loopfunc": true
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JKRhb/node-red-contrib-coap.git"
},
"keywords": [
"node-red",
"node-red-contrib",
"iot",
"coap",
"udp",
"cbor"
],
"node-red": {
"version": ">=1.3.0",
"nodes": {
"coap-in": "coap/coap-in.js",
"coap-request": "coap/coap-request.js"
}
},
"author": {
"name": "Justas Azna",
"email": "[email protected]"
},
"contributors": [
{
"name": "Eelco Wiersma"
},
{
"name": "Lucien Guimier"
},
{
"name": "Justas Azna"
},
{
"name": "Jan Romann"
}
],
"engines": {
"node": ">=12"
}
}