-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "node-red-contrib-mikrotik",
"version": "0.3.0",
"description": "Node based on node-red-contrib-mikrotik to work with Mikrotik devices which fixes device configuration problem",
"scripts": {
"build": "npm run tsc",
"postbuild": "node tool/buildhtml.js",
"nodered": "npm run build && node-red",
"tsc": "tsc"
},
"author": "Alexander Pivovarov <pivovarov@gmail.com>",
"contributors": [
{
"name": "Ahmed Al Hafoudh",
"email": "alhafoudh@freevision.sk",
"url": "https://www.freevision.sk"
},
{
"name": "Nikola 0nikola1",
"email": "n@bobetic.com",
"url": "https://github.com/0nikola1"
},
{
"name": "Konrad Mattheis",
"url": "https://github.com/konne"
}
],
"node-red": {
"nodes": {
"mikrotik": "nodes/mikrotik.js",
"mikrotik-device": "nodes/mikrotik-device.js"
}
},
"keywords": [
"node-red",
"mikrotik"
],
"license": "ISC",
"dependencies": {
"node-routeros": "1.6.9"
},
"main": "mikrotik.js",
"devDependencies": {
"@types/node-red": "1.3.5",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/node-red-contrib/node-red-contrib-mikrotik.git"
},
"bugs": {
"url": "https://github.com/node-red-contrib/node-red-contrib-mikrotik/issues"
},
"homepage": "https://github.com/node-red-contrib/node-red-contrib-mikrotik#readme"
}