-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.42 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
43
44
45
46
{
"name": "node-red-contrib-cryptocompare",
"version": "0.4.1",
"author": "Remko de Knikker <[email protected]>",
"keywords": [
"node-red",
"cryptocompare",
"cryptocurrency",
"bitcoin",
"ethereum",
"litecoin",
"price"
],
"description": "A collections of nodes to interact with the CryptoCompare API services.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/remkohdev/node-red-contrib-cryptocompare"
},
"maintainers": [
{
"name": "Remko de Knikker",
"email": "[email protected]",
"web": "https://medium.com/@remkohdev"
}
],
"node-red": {
"nodes": {
"coinlist": "nodes/coinlist.js",
"coinsnapshot": "nodes/coinsnapshot.js",
"coinsnapshotfullbyid": "nodes/coinsnapshotfullbyid.js",
"histoday": "nodes/histoday.js",
"histohour": "nodes/histohour.js",
"histominute": "nodes/histominute.js",
"miningcontracts": "nodes/miningcontracts.js",
"miningequipment": "nodes/miningequipment.js",
"price": "nodes/price.js",
"pricehistorical": "nodes/pricehistorical.js",
"socialstats": "nodes/socialstats.js",
"toppairs": "nodes/toppairs.js"
}
},
"dependencies": {
"request": "*"
}
}