Remove bower from project (#762)

This commit is contained in:
Eduardo Moreira
2020-03-22 10:05:43 -03:00
committed by GitHub
parent b7983887aa
commit 6ced0516f6
3 changed files with 0 additions and 19 deletions

View File

@@ -1,6 +1,5 @@
/.*/
/.*
/bower.json
/examples
/extras/*
/circle.yml

View File

@@ -74,7 +74,6 @@ REPOSITORY STRUCTURE
* [extras/](extras/) contains plugins that for various reasons aren't enabled by default. You have to explicitly add them with their own `script` element to use them.
* [build.js](build.js): Simple build file that creates `js/impress.js`. It also creates a minified version `impress.min.js`, but that one is not included in the github repository.
* [package.json](build.js): An NPM package specification. This was mainly added so you can easily install [buildify](https://www.npmjs.com/package/buildify) and run `node build.js`. Other than the build process, which is really just doing roughly `cat src/impress.js src/plugins/*/*.js > js/impress.js`, and testing, `impress.js` itself doesn't depend on Node or any NPM modules.
* [bower.json](bower.json): A Bower package file. We also don't depend on Bower, but provide this file if you want to use it.
WANT TO CONTRIBUTE?
---------------------

View File

@@ -1,17 +0,0 @@
{
"name": "impress-js",
"description": "It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com",
"homepage": "https://github.com/bartaz/impress.js",
"license" : ["http://bartaz.mit-license.org/", "http://www.gnu.org/licenses/"],
"main": [
"./js/impress.js"
],
"keywords": [
"slideshow",
"css3"
],
"author": {
"name": "Bartek Szopka",
"web": "http://bartaz.github.com"
}
}