-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1022 Bytes
/
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
{
"name": "node-red-contrib-streamr",
"version": "0.0.1",
"description": "Streamr node-red integration. Publish and subscribe nodes to integrate to Streamr platform.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/streamr-dev/node-red-streamr-client-node.git"
},
"node-red": {
"nodes": {
"streamr-sub": "streamr-node/streamr-sub.js",
"streamr-pub": "streamr-node/streamr-pub.js",
"streamr-config": "streamr-node/streamr-config.js"
}
},
"keywords": [
"node-red",
"node-red-contrib",
"contrib",
"streamr",
"blockchain",
"oracle",
"api",
"iot"
],
"dependencies": {
"ethers": "^5.5.2",
"streamr-client": "6.0.9"
},
"devDependencies": {
"eslint": "5.7.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-import-order": "2.1.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Streamr"
}