bower-to-jspm
v1.0.1
Published
Utility to help migrate from bower to jspm. Finds packages on npm and github and generates install command lines for you
Downloads
5
Readme
bower-to-jspm
I needed a tool to help me look up packages for jspm. I had a bower config, now I just needed a quick way to look up where that package exists for jspm.
This tool solves that problem.
When you have migrated all your packages to jspm you might want to test our systemjs config to be sure all your modules are correctly hooked up.
Usage
npm install -g bower-to-jspm
cd path/to/your/bower/project
bower-to-jspm
Now your bower.json
will be analyzed, the packages will be found on either npm or github and the corresponding result will look something like this:
unexpected-sinon
jspm install npm:[email protected]
jspm install unexpected-sinon=github:sunesimonsen/[email protected]
unexpected-dom
jspm install npm:[email protected]
jspm install unexpected-dom=github:Munter/[email protected]
react-simpletabs
jspm install npm:[email protected]
jspm install react-simpletabs=github:pedronauck/[email protected]
Keypress
jspm install Keypress=github:dmauro/[email protected]
unexpected
jspm install npm:[email protected]
jspm install unexpected=github:sunesimonsen/[email protected]
unexpected-react
jspm install npm:[email protected]
jspm install unexpected-react=github:podio/[email protected]
flux
jspm install npm:[email protected]
jspm install flux=github:facebook/[email protected]
Copy/paste the command line corresponding to the package endpoint you'd like to use.
License
(The MIT License)
Copyright (c) 2015 Peter Müller [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.