From 917b10af7144bce0e8a21453a2a02eb8f09e1dfb Mon Sep 17 00:00:00 2001 From: Eoussama Date: Sun, 9 Dec 2018 22:28:16 +0000 Subject: [PATCH] Bower added --- .npmignore | 15 +++++++++++++++ bower.json | 24 ++++++++++++++++++++++++ docs/assets/css/main.css | 2 +- docs/assets/js/main.js | 2 +- docs/index.html | 2 +- package.json | 2 +- src/translate.js | 2 +- 7 files changed, 44 insertions(+), 5 deletions(-) create mode 100644 .npmignore create mode 100644 bower.json diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..312b19c --- /dev/null +++ b/.npmignore @@ -0,0 +1,15 @@ +# Ignoring Node modules. +node_modules/ + +# Ignoring the source code. +src/ + +# Ignoring bower. +bower.json + +# Ignoring gulp. +gulpfile.js + +# Ignoring git files. +.gitattributes +.gitignore diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..4e764fc --- /dev/null +++ b/bower.json @@ -0,0 +1,24 @@ +{ + "name": "translatejs", + "description": "A simple javascript library for translating web content.", + "main": "", + "authors": [ + "EOussama" + ], + "license": "MIT", + "keywords": [ + "translate", + "javascript-library", + "text-translation", + "node-package" + ], + "homepage": "https://github.com/EOussama/translatejs", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests", + "src" + ] +} diff --git a/docs/assets/css/main.css b/docs/assets/css/main.css index 8ecff6f..0a85bfa 100644 --- a/docs/assets/css/main.css +++ b/docs/assets/css/main.css @@ -1,7 +1,7 @@ /** * * @name: translatejs - * @version: 1.0.0 + * @version: 2.0.0 * @author: EOussama * @license MIT * @source: https://github.com/EOussama/translatejs diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 02ff455..097c68f 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -1,7 +1,7 @@ /** * * @name: translatejs - * @version: 1.0.0 + * @version: 2.0.0 * @author: EOussama * @license MIT * @source: https://github.com/EOussama/translatejs diff --git a/docs/index.html b/docs/index.html index 5c2117c..32fedeb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,7 +1,7 @@