-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "@ralphwetzel/node-red-context-monitor",
"version": "1.2.1",
"description": "A Node-RED node to monitor a context.",
"main": "monitor.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ralphwetzel/node-red-context-monitor.git"
},
"keywords": [
"node-red",
"context"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"context-monitor": "monitor.js"
}
},
"author": "Ralph Wetzel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ralphwetzel/node-red-context-monitor/issues"
},
"homepage": "https://github.com/ralphwetzel/node-red-context-monitor#readme",
"dependencies": {
"fs-extra": "^11.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"mocha": "^10.2.0",
"node-red-node-test-helper": "^0.3.2",
"node-red": "^3.1.0"
},
"files": [
"/examples",
"/lib",
"/resources",
"LICENSE",
"monitor.*",
"package.json",
"README.md"
]
}