-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.2 KB
/
package.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "react-echarts",
"version": "0.0.1",
"description": "A collection of React components for ECharts charts",
"main": "lib/js/index.js",
"scripts": {
"test": "./node src/js/test.js",
"example": "./node example/server.js",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DAIAD/react-echarts.git"
},
"keywords": [
"React",
"ECharts"
],
"author": "Michail Alexakis",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/DAIAD/react-echarts/issues"
},
"homepage": "https://github.com/DAIAD/react-echarts#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.2.0",
"body-parser": "^1.15.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"envify": "^3.4.0",
"express": "^4.13.4",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-curl": "^2.2.0",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"react-bootstrap": "^0.28.5",
"react-controls": "git+https://github.com/drmalex07/react-controls.git#master",
"react-datetime": "^2.1.0",
"react-router": "^2.2.4",
"redux-devtools": "^3.2.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1"
},
"dependencies": {
"echarts": "^3.1.6",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.11.1",
"react": "^15.0.1",
"react-addons-pure-render-mixin": "^15.0.1",
"react-controls": "git+https://github.com/drmalex07/react-controls.git#master",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"rgbcolor": "0.0.4",
"sprintf": "~0.1.5"
},
"browserify": {
"transform": [
"babelify",
"envify",
"browserify-shim"
]
},
"browser": {},
"browserify-shim": {
"echarts": "global:echarts"
}
}