-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "re-echarts",
"version": "1.2.0",
"description": "react echarts",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"dev": "NODE_ENV=development ./node_modules/.bin/babel-node devServer",
"build": "npm run clean && NODE_ENV=production ./node_modules/.bin/babel src -d lib",
"gh": "NODE_ENV=gh ./node_modules/.bin/babel-node compile",
"lint": "./node_modules/.bin/eslint ./",
"prepublish": "npm run build"
},
"keywords": [
"react",
"echarts"
],
"author": "liekkas.zeng",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liekkas/re-echarts.git"
},
"bugs": {
"url": "https://github.com/liekkas/re-echarts/issues"
},
"homepage": "https://github.com/liekkas/re-echarts",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"echarts": "^4.0.2",
"eslint": "^2.6.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"express": "^4.13.4",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"pre-commit": "^1.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"redbox-react": "^1.5.0",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"element-resize-event": "^2.0.7",
"prop-types": "^15.6.0",
"react-addons-shallow-compare": "^15.6.2"
},
"peerDependencies": {
"react": "^16.2.0",
"echarts": "^4.0.2"
},
"pre-commit": [
"lint"
]
}