-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.52 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
52
53
54
55
56
57
58
59
60
61
{
"author": "Daniel Caspi <dan@element26.net>",
"bugs": {
"url": "https://github.com/dxdc/node-red-contrib-join-wait/issues"
},
"dependencies": {
"jsonata": "^1.8.5",
"node-persist": "^2.1.0"
},
"description": "Waits for incoming messages from different input paths to arrive within a fixed time window.",
"devDependencies": {
"@types/node-red": "^1.2.0",
"eslint": "^8.8.0",
"eslint-plugin-mocha": "^10.0.3",
"markdown-spellcheck": "^1.3.1",
"mocha": "^9.2.0",
"node-red": "^2.2.0",
"node-red-node-test-helper": "^0.2.7",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2"
},
"homepage": "https://github.com/dxdc/node-red-contrib-join-wait#readme",
"keywords": [
"node-red",
"join",
"parallel",
"timeout",
"wait",
"merge"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dxdc/node-red-contrib-join-wait/blob/master/LICENSE"
}
],
"main": "join-wait.js",
"maintainers": [
"Daniel Caspi <dan@element26.net>"
],
"name": "node-red-contrib-join-wait",
"node-red": {
"nodes": {
"join-wait": "join-wait.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxdc/node-red-contrib-join-wait.git"
},
"scripts": {
"coverage": "nyc npm t",
"format": "prettier --write {.,test}/*.js *.html *.md",
"lint": "eslint {.,test}/*.js",
"spellcheck": "mdspell -r -n *.md",
"test": "mocha \"test/**/*_spec.js\""
},
"version": "0.5.3"
}