diff --git a/README.md b/README.md index 871a52f..4bca481 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Global Options ```js angular.module('app', ['angular-redactor']) .config(function(redactorOptions) { - redactorOptions.buttons = ['formatting', '|', 'bold', 'italic']; + redactorOptions.buttons = ['formatting', '|', 'bold', 'italic']; }); ``` @@ -63,3 +63,9 @@ Bower Installation ```js bower install angular-redactor ``` + +NPM Installation +-------------- +```js +npm install angular-redactor +``` diff --git a/package.json b/package.json new file mode 100644 index 0000000..3f30e30 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "angular-redactor", + "version": "1.1.7", + "description": "Directive for redactor WYSIWYG editor", + "main": "angular-redactor.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/TylerGarlick/angular-redactor.git" + }, + "keywords": [ + "Redactor", + "WYSIWYG", + "Angular", + "Directives", + "Html5", + "Editor" + ], + "author": [ + "Tyler Garlick " + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/TylerGarlick/angular-redactor/issues" + }, + "homepage": "https://github.com/TylerGarlick/angular-redactor#readme" +}