-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "rc-echarts",
"version": "0.3.1",
"description": "react echarts",
"keywords": [
"react",
"echarts",
"chart",
"charts"
],
"author": {
"name": "somonus",
"email": "guiqi.zh@gmail.com"
},
"homepage": "https://github.com/somonus/react-echarts",
"repository": {
"type": "git",
"url": "https://github.com/somonus/react-echarts.git"
},
"main": "lib/index.js",
"license": [
{
"type": "MIT",
"url": "http://mit-license.org"
}
],
"dependencies": {
"echarts": "3.1.10",
"babel-runtime": "5.8.25"
},
"peerDependencies": {
"react": ">=0.14.2",
"react-dom": ">=0.14.2"
},
"devDependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"babel-plugin-react-transform": "1.1.1",
"babel-plugin-typecheck": "1.3.0",
"eslint": "1.6.0",
"eslint-config-airbnb": "0.1.0",
"eslint-loader": "1.0.0",
"eslint-plugin-react": "3.5.0",
"lodash": "~3.10.1",
"react-hot-loader": "1.3.0",
"react-kendo": "~0.13.11",
"react-router": "1.0.0",
"react-transform-catch-errors": "~1.0.1",
"react-transform-hmr": "~1.0.1",
"webpack": "1.12.4",
"webpack-dev-server": "1.12.1"
},
"scripts": {
"build": "rm -rf lib && node_modules/.bin/babel src --out-dir lib",
"start": "node example/server.js"
}
}