-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.05 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
{
"name" : "node-red-contrib-primitives",
"version" : "0.2.0",
"description" : "Simple node-red nodes for manipulating primitive values.",
"license" :"MIT",
"author" : "Justin Pradier <chromecide@gmail.com> (https://chromecide.com)",
"homepage" : "https://github.com/chromecide/node-red-contrib-primitives",
"repository" :{
"type" : "git",
"url" : "https://github.com/chromecide/node-red-contrib-primitives.git"
},
"bugs" : {
"url" : "https://github.com/chromecide/node-red-contrib-primitives/issues"
},
"dependencies": {
},
"keywords": [ "node-red", "Primitives", "Strings", "Arrays", "Numbers", "Booleans" ],
"node-red" : {
"nodes": {
"array-iterate": "arrays/iterate.js",
"array-join": "arrays/join.js",
"bool-toggle":"boolean/toggle.js",
"number-dec": "numbers/decrement.js",
"number-inc": "numbers/increment.js",
"string-split": "strings/split.js"
}
}
}