-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.29 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
{
"name": "node-red-contrib-dwd",
"version": "0.9.0",
"description": "Node-RED Nodes that fetch weather warnings from DWD",
"keywords": [
"node-red",
"weather",
"warning",
"dwd",
"germany",
"deutsch",
"wetterdienst",
"warnungen",
"wind",
"sturm",
"regen",
"schnee",
"glatteis",
"frost"
],
"main": "none",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "camo-purge; xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/node-red-contrib-dwd.git"
},
"author": "Sebastian Raff <hobbyquaker@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/node-red-contrib-dwd/issues"
},
"homepage": "https://github.com/hobbyquaker/node-red-contrib-dwd#readme",
"node-red": {
"nodes": {
"dwd": "nodes/dwd.js"
}
},
"devDependencies": {
"camo-purge": "^1.0.2",
"eslint-plugin-html": "^4.0.3",
"xo": "^0.20.3"
},
"xo": {
"space": 4,
"plugin": "html",
"global": [
"$",
"RED"
],
"extensions": [
"js",
"html"
]
},
"dependencies": {
"moment": "^2.22.2",
"moment-range": "^4.0.1",
"moment-timezone": "^0.5.20",
"request": "^2.87.0"
}
}