From 3e06c913cf0096fe52535e778968d40958e4ee01 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Tue, 26 Jan 2016 22:24:33 +0100 Subject: [PATCH] Updated README --- README.md | 11 +++++++++-- bower.json | 1 + package.json | 5 +++++ 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89300050d..e5656e33a 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,21 @@ Try it here: http://grapesjs.com/demo.html ### Installation -You can get GrapesJS with `bower install grapesjs` and directly use it, but for development purpose you should get it via `npm install grapesjs` +You can get GrapesJS with `bower install grapesjs` or via `git clone https://github.com/artf/grapesjs.git` to directly use it. For development purpose you should follow instructions below. ### Development GrapesJS uses [RequireJS](http://requirejs.org/) to organize its files inside `src` folder and [Grunt](http://gruntjs.com/) for build them to `dist` -Install all necessary dependencies: +Clone the repository and enter inside the folder + +```sh +$ git clone https://github.com/artf/grapesjs.git +$ cd grapesjs +``` + +Install all necessary dependencies ```sh $ npm install diff --git a/bower.json b/bower.json index 72bf9cdab..5d102cae9 100644 --- a/bower.json +++ b/bower.json @@ -3,6 +3,7 @@ "description": "Open source Web Template Editor", "version": "0.0.51", "author": "Artur Arseniev", + "homepage": "http://grapesjs.com", "main": [ "dist/grapes.min.js", "dist/grapes.min.css" diff --git a/package.json b/package.json index 2372d8557..69a673fe2 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,11 @@ "version": "0.0.51", "author": "Artur Arseniev", "license": "BSD-3-Clause", + "homepage": "http://grapesjs.com", + "repository": { + "type": "git", + "url": "https://github.com/artf/grapesjs.git" + }, "dependencies": { "bower": "^1.7.2" },