-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
32 lines (32 loc) · 1.61 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
{
"name": "node-red-node-youtube",
"version": "0.0.5",
"description": "A Node-RED node to access Youtube Data API.",
"dependencies": {
"youtube-api": "0.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jlong23/node-red-node-youtube"
},
"license": "Apache-v2.0",
"keywords": [
"node-red",
"youtube",
"videos",
"playlists",
"Google Data API"
],
"node-red": {
"nodes": {
"YouTube-API": "youtube.js"
}
},
"author": {
"name": "Jay Long",
"email": "[email protected]",
"url": "http://www.rabbitearsvideoproduction.com"
},
"readme": "node-red-node-youtube\n====================\n\n\n\n<a href=\"http://nodered.org\" target=\"_new\">Node-RED</a> node that manipulates Youtube Data API.\n\nInstall\n-------\n\nRun the following command in the root directory of your Node-RED install\n\n npm install node-red-node-youtube\n\nUsage\n-----\n\nContains 3 Nodes that may be used together:\n\n Channels List - List a user's channels\nPlaylist List - List a Channel Playlist(s)\nPlaylistItems List - List the Videos in a Playlist\n\nYou will need a Google API Key in order to make use of the Nodes, see <a href=\"https://developers.google.com/youtube/registering_an_application#Create_API_Keys\">Creating API keys</a>.\n\nExample Flow\n------------\n\n<a href=\"https://github.com/jlong23/node-red-node-youtube/blob/master/example_getUserPlaylistVideoTitles.flow\"><img src=\"https://raw.githubusercontent.com/jlong23/node-red-node-youtube/master/example_getUserPlaylistVideoTitles.jpg\"></a>",
"readmeFilename": "README.md"
}