From f1c11adacdff154e1475fe1f22aeefe213dbda68 Mon Sep 17 00:00:00 2001 From: Michael Contento Date: Tue, 9 Feb 2016 13:16:00 +0100 Subject: [PATCH] lowercase project name --- README.md | 26 +++++++++++++------------- package.json | 6 +++--- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index f78bb69..0fd8722 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ -# [redux-storage-engine-localStorage][] +# [redux-storage-engine-localstorage][] -[![build](https://travis-ci.org/michaelcontento/redux-storage-engine-localStorage.svg)](https://travis-ci.org/michaelcontento/redux-storage-engine-localStorage) -[![dependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localStorage.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localStorage) -[![devDependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localStorage/dev-status.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localStorage#info=devDependencies) +[![build](https://travis-ci.org/michaelcontento/redux-storage-engine-localstorage.svg)](https://travis-ci.org/michaelcontento/redux-storage-engine-localstorage) +[![dependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localstorage.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localstorage) +[![devDependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localstorage/dev-status.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localstorage#info=devDependencies) -[![license](https://img.shields.io/npm/l/redux-storage-engine-localStorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorage) -[![npm version](https://img.shields.io/npm/v/redux-storage-engine-localStorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorage) -[![npm downloads](https://img.shields.io/npm/dm/redux-storage-engine-localStorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorage) -[![Code Climate](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localStorage/badges/gpa.svg)](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localStorage) +[![license](https://img.shields.io/npm/l/redux-storage-engine-localstorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstorage) +[![npm version](https://img.shields.io/npm/v/redux-storage-engine-localstorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstorage) +[![npm downloads](https://img.shields.io/npm/dm/redux-storage-engine-localstorage.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstorage) +[![Code Climate](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localstorage/badges/gpa.svg)](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localstorage) `window.localStorage` based engine for [redux-storage][]. ## Installation - npm install --save redux-storage-engine-localStorage + npm install --save redux-storage-engine-localstorage ## Usage Stores everything inside `window.localStorage`. ```js -import createEngine from 'redux-storage-engine-localStorage'; +import createEngine from 'redux-storage-engine-localstorage'; const engine = createEngine('my-save-key'); ``` @@ -28,7 +28,7 @@ const engine = createEngine('my-save-key'); operation will block the JS thread! **Warning**: Some browsers like IE<=11 does not support Promises! If you don't -want to polyfill the whole Promise API, [redux-storage-engine-localStorageFakePromise][] +want to polyfill the whole Promise API, [redux-storage-engine-localstoragefakepromise][] might be a possible solution for you. ## License @@ -55,5 +55,5 @@ might be a possible solution for you. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [redux-storage]: https://github.com/michaelcontento/redux-storage - [redux-storage-engine-localStorage]: https://github.com/michaelcontento/redux-storage-engine-localStorage - [redux-storage-engine-localStorageFakePromise]: https://github.com/michaelcontento/redux-storage-engine-localStorageFakePromise + [redux-storage-engine-localstorage]: https://github.com/michaelcontento/redux-storage-engine-localstorage + [redux-storage-engine-localstoragefakepromise]: https://github.com/michaelcontento/redux-storage-engine-localstoragefakepromise diff --git a/package.json b/package.json index e2be8dd..8847127 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "redux-storage-engine-localStorage", + "name": "redux-storage-engine-localstorage", "version": "1.0.0", "description": "window.localStorage engine for redux-storage", "main": "build/index.js", @@ -9,9 +9,9 @@ }, "repository": { "type": "git", - "url": "https://github.com/michaelcontento/redux-storage-engine-localStorage.git" + "url": "https://github.com/michaelcontento/redux-storage-engine-localstorage.git" }, - "homepage": "https://github.com/michaelcontento/redux-storage-engine-localStorage", + "homepage": "https://github.com/michaelcontento/redux-storage-engine-localstorage", "keywords": [ "redux", "redux-storage",