-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.71 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.71 KB
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": "@yousolution/node-red-contrib-you-notify",
"version": "0.0.2",
"description": "Generic node for manage notify",
"main": "index.js",
"scripts": {
"update": "run-script-os",
"update:linux:darwin": "npm pack && mv yousolution-node-red-contrib-you-notify-$npm_package_version.tgz ./data && cd data && npm i yousolution-node-red-contrib-you-notify-$npm_package_version.tgz && docker-compose restart",
"update:win32": "npm pack && copy yousolution-node-red-contrib-you-notify-%npm_package_version%.tgz .\\data\\ && cd .\\data\\ && npm i yousolution-node-red-contrib-you-notify-%npm_package_version%.tgz && docker-compose restart",
"update:default": "npm pack && mv yousolution-node-red-contrib-you-notify-$npm_package_version.tgz ./data && cd data && npm i yousolution-node-red-contrib-you-notify-$npm_package_version.tgz && docker-compose restart"
},
"keywords": [
"node-red",
"Notify",
"AdaptiveCard",
"Teams",
"Microsoft",
"API",
"integration",
"youSolution.Cloud"
],
"author": "Alessio Pellizzaro <alessio.pellizzaro@innotech.email>",
"license": "MPL-2.0",
"node-red": {
"version": ">=2.0.0",
"nodes": {
"you-notify": "nodes/notify.js",
"you-notify-out": "nodes/notifyOut.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yousolution-cloud/node-red-contrib-you-notify.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node-red-node-test-helper": "^0.3.4",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"run-script-os": "^1.1.6"
},
"dependencies": {
"ajv": "^8.16.0",
"axios": "^1.7.2"
}
}