-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "node-red-contrib-sensibo",
"version": "0.6.1",
"description": "Communication nodes to Sensibo cloud",
"keywords": [
"node-red",
"sensibo"
],
"main": "sensibo.js",
"scripts": {
"start": "node sensibo.js",
"Test Get Measurement": "node working/getmeasurement.js",
"test": "mocha \"test/**/*_spec.js\""
},
"author": "David deMarco",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21",
"node-fetch": "^3.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/thetonto/node-red-contrib-sensibo"
},
"node-red": {
"nodes": {
"sensibo": "sensibo.js"
}
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^10.2.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.1",
"npmignore": "^0.3.0"
}
}