-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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-iota",
"version": "1.0.0",
"description": "A group of nodes for IOTA (Tangle) integration with masked authenticated messaging (MAM) support.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"node-red": {
"nodes": {
"MAM fetch": "nodes/mam/fetch_mam.js",
"MAM publish": "nodes/mam/publish_mam.js",
"iotaConverter": "nodes/iota-converter.js",
"iota-server": "nodes/iota-servernode.js",
"iotatransactions": "nodes/iota-transactions.js",
"iotasearch": "nodes/iota-search.js",
"iotasendtransfer": "nodes/iota-sendtransfer.js",
"iotagetinputs": "nodes/iota-getinputs.js",
"iotanewaddress": "nodes/iota-newaddress.js"
}
},
"author": "Seyed Amir Alavi",
"license": "MIT",
"dependencies": {
"@iota/core": "*",
"@iota/converter": "*",
"@iota/validators": "*",
"@iota/mam": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/QMUL-RPCS-Lab/node-red-contrib-iota.git"
},
"bugs": {
"url": "https://github.com/QMUL-RPCS-Lab/node-red-contrib-iota/issues"
},
"keywords": [
"node-red",
"mam",
"iota",
"tangle"
]
}