Browse Source

Updated README

pull/2/head
Artur Arseniev 10 years ago
parent
commit
3e06c913cf
  1. 11
      README.md
  2. 1
      bower.json
  3. 5
      package.json

11
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

1
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"

5
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"
},

Loading…
Cancel
Save