-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "node-red-contrib-valetudo",
"version": "3.1.1",
"description": "Node-RED-nodes for valetudo",
"main": "none",
"scripts": {
"lint": "eslint .",
"ts-check": "tsc -p jsconfig.json",
"test": "mocha \"test/**/*_spec.js\"",
"release": "standard-version"
},
"author": "Alexander Knöbel <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/alexkn/node-red-contrib-valetudo.git"
},
"bugs": {
"url": "https://github.com/alexkn/node-red-contrib-valetudo/issues"
},
"homepage": "https://github.com/alexkn/node-red-contrib-valetudo",
"license": "Apache-2.0",
"keywords": [
"node-red"
],
"node-red": {
"nodes": {
"valetudo-map-png": "nodes/valetudo-map-png.js"
}
},
"dependencies": {
"jimp": "^0.16.2"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node-red": "^1.2.1",
"@types/node-red-node-test-helper": "^0.2.2",
"@types/should-sinon": "0.0.8",
"eslint": "^8.29.0",
"mocha": "^10.1.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"standard-version": "^9.5.0",
"typescript": "^4.9.3"
},
"files": [
"/assets",
"/docs",
"/lib",
"/nodes"
]
}