-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "node-red-contrib-loop-processing",
"version": "0.5.1",
"description": "Node-RED nodes to help flow looping.",
"main": "node.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./array-loop.js ./counter-loop.js ./while-loop.js --fix"
},
"node-red": {
"nodes": {
"index-loop": "counter-loop.js",
"array-loop": "array-loop.js",
"while-loop": "while-loop.js"
}
},
"dependencies": {
"util": "^0.11.1",
"vm": "^0.1.0"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-plugin-node": "^8.0.1"
},
"keywords": [
"node-red",
"loop",
"repeat",
"iterator",
"array"
],
"author": "s1r-J",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/s1r-J/node-red-contrib-loop-processing.git"
},
"bugs": {
"url": "https://github.com/s1r-J/node-red-contrib-loop-processing/issues"
},
"homepage": "https://github.com/s1r-J/node-red-contrib-loop-processing#readme"
}