forked from not7cd/node-red-contrib-megalodon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@not7cd/node-red-contrib-megalodon",
"version": "0.0.1",
"description": "Node-RED wrapper around Megalodon. The library that allows for interfacing with Mastodon, Pleroma, Friendica, and Firefish servers.",
"node-red": {
"nodes": {
"post-status": "src/post-status.js",
"fediverse-instance": "src/fediverse-instance.js",
"get": "src/get.js",
"lookup-account": "src/lookup-account.js",
"streaming": "src/streaming.js"
}
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha \"src/**/*.spec.js\"",
"local-node-red": "./tools/docker.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/not7cd/node-red-contrib-megalodon.git"
},
"keywords": [
"node-red"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/not7cd/node-red-contrib-megalodon/issues"
},
"homepage": "https://github.com/not7cd/node-red-contrib-megalodon#readme",
"dependencies": {
"megalodon": "^10.0.1"
},
"devDependencies": {
"mocha": "^10.4.0",
"node-red": "^3.1.10",
"node-red-node-test-helper": "^0.3.4"
}
}