-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "node-red-contrib-twc-weather",
"version": "0.7.0",
"description": "Node-RED nodes for The Weather Company and Weather Underground Data APIs",
"main": "pws-current.js",
"scripts": {
"test": "echo \"no test required\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnwalicki/node-red-contrib-twc-weather.git"
},
"keywords": [
"node-red",
"weather",
"twc",
"pws",
"forecast",
"weatherunderground"
],
"author": "John Walicki <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/johnwalicki/node-red-contrib-twc-weather/issues"
},
"homepage": "https://github.com/johnwalicki/node-red-contrib-twc-weather#readme",
"node-red": {
"version": ">=2.0.0",
"nodes": {
"pws-observations": "pws-current.js",
"pws-historical": "pws-historical.js",
"pws-forecast": "pws-forecast.js",
"pws-recent": "pws-recent.js",
"twc-health": "twc-health.js",
"twc-core": "twc-core.js",
"twc-nowcast": "twc-nowcast.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"axios": ">=0.27.2"
}
}