Skip to content

Commit

Permalink
Initial commit. 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
IonicaBizau committed May 29, 2018
0 parents commit 4c0f9a6
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
5 changes: 5 additions & 0 deletions example/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"use strict";

const googleFontDownloader = require("../lib");

console.log(googleFontDownloader());
15 changes: 15 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"use strict";

/**
* googleFontDownloader
* Download Google fonts by providing the url
*
* @name googleFontDownloader
* @function
* @param {Number} a Param descrpition.
* @param {Number} b Param descrpition.
* @return {Number} Return description.
*/
module.exports = function googleFontDownloader (a, b) {
return a + b;
};
44 changes: 44 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "google-font-downloader",
"description": "Download Google fonts by providing the url",
"keywords": [
"google",
"font",
"downloader",
"download",
"fonts",
"by",
"providing",
"the",
"url"
],
"license": "MIT",
"version": "1.0.0",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
"homepage": "https://github.com/IonicaBizau/google-font-downloader#readme",
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"scripts/",
"resources/",
"menu/",
"cli.js",
"index.js",
"bloggify.js",
"bloggify.json"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IonicaBizau/google-font-downloader.git"
},
"bugs": {
"url": "https://github.com/IonicaBizau/google-font-downloader/issues"
}
}

0 comments on commit 4c0f9a6

Please sign in to comment.