Skip to content

Commit 801744f

Browse files
committed
update readme, bower.json, package.json
1 parent d2d294b commit 801744f

File tree

3 files changed

+39
-9
lines changed

3 files changed

+39
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ ReactDOM.render(
6868
```
6969

7070
## Build
71-
We use [gulp](http://gulpjs.com/) to compile plugin source code and examples.
72-
Please install all necessary dependencies using following command
71+
To build plugin and samples you need to install (gulp)[(http://gulpjs.com/)] if you don't have it installed already.
7372

73+
Please install remaining dependencies using following command
7474
```
7575
npm install
7676
```
@@ -82,7 +82,7 @@ gulp
8282
```
8383

8484
#### Building examples
85-
To comile all examples run following command
85+
To compile all examples run following command
8686
```
8787
gulp examples
8888
```
@@ -101,12 +101,12 @@ React Plugin for AnyChart is developed using ES6 syntax. There are `import` and
101101
See these examples to learn how things work:
102102

103103
* **[Chart with JSON Settings](https://github.com/anychart/anychart-react/blob/master/examples/chart_with_json)**: Chart with complex JSON settings.
104-
* **[Charts_with_Controls](https://github.com/anychart/anychart-react/blob/master/examples/chart_with_controls)**: Simple demo with 2 charts. Allows to change title and enable/disable legend.
104+
* **[Charts_with_Controls](https://github.com/anychart/anychart-react/blob/master/examples/charts_with_controls)**: Simple demo with 2 charts. Allows to change title and enable/disable legend.
105105
* **[Geographical_Map](https://github.com/anychart/anychart-react/blob/master/examples/choropleth_map)**: Choropleth map demo.
106106
* **[Data_Streaming](https://github.com/anychart/anychart-react/blob/master/examples/data_streaming)**: Simple data streaming demo.
107107
* **[Simple_Dashboard](https://github.com/anychart/anychart-react/blob/master/examples/simple_dashboard)**: Simple dashboard demo.
108108
* **[Stock Chart](https://github.com/anychart/anychart-react/blob/master/examples/stock)**: Stock chart demo.
109-
* **[Tabs](https://github.com/anychart/anychart-react/blob/master/examples/chart_with_json)**: Demo shows how you can use AnyChart with [React Tabs](https://github.com/reactjs/react-tabs); also shows how to control a legend using component state.
109+
* **[Tabs](https://github.com/anychart/anychart-react/blob/master/examples/tabs)**: Demo shows how you can use AnyChart with [React Tabs](https://github.com/reactjs/react-tabs); also shows how to control a legend using component state.
110110

111111
The source code for all examples is in the [`examples/src`](https://github.com/anychart/anychart-react/blob/master/examples/src) folder.
112112

bower.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "anychart-react",
3-
"description": "AnyChart React plugin",
4-
"main": "dist/anychart-react.min.js",
3+
"description": "React component for AnyChart JavaScript charting library",
4+
"main": "./dist/anychart-react.min.js",
55
"authors": [
66
"AnyChart"
77
],
@@ -30,6 +30,7 @@
3030
"javascript plots",
3131
"ajax plots",
3232
"javascript",
33+
"react",
3334
"SVG",
3435
"HTML5",
3536
"framework",

package.json

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,42 @@
11
{
22
"name": "anychart-react",
33
"version": "1.0.0",
4-
"description": "AnyChart React plugin",
5-
"main": "dist/anychart-react.min.js",
4+
"description": "React component for AnyChart JavaScript charting library",
5+
"main": "./dist/anychart-react.min.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1"
88
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/AnyChart/AnyChart-React.git"
12+
},
913
"author": "AnyChart",
1014
"license": "Apache-2.0",
15+
"bugs": {
16+
"url": "https://github.com/AnyChart/AnyChart-React/issues"
17+
},
18+
"homepage": "https://github.com/AnyChart/AnyChart-React",
19+
"keywords": [
20+
"anychart",
21+
"anystock",
22+
"anygantt",
23+
"anymap",
24+
"charts",
25+
"javascript charts",
26+
"ajax charts",
27+
"plots",
28+
"line charts",
29+
"bar charts",
30+
"pie charts",
31+
"javascript plots",
32+
"ajax plots",
33+
"javascript",
34+
"react",
35+
"SVG",
36+
"HTML5",
37+
"framework",
38+
"VML"
39+
],
1140
"dependencies": {
1241
"anychart": "^7.13.0-dev-preview.0",
1342
"react": "^15.4.1",

0 commit comments

Comments
 (0)