forked from recharts/recharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.59 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "recharts",
"version": "1.0.1",
"description": "React charts",
"main": "lib/index",
"module": "es6/index",
"jsnext:main": "es6/index",
"files": [
"*.md",
"demo",
"es6",
"lib",
"umd",
"src"
],
"keywords": [
"react",
"reactjs",
"chart",
"react-component"
],
"scripts": {
"build": "npm run build-cjs && npm run build-es6 && rimraf umd && npm run build-umd && npm run build-min",
"build-cjs": "rimraf lib && cross-env NODE_ENV=commonjs babel ./src -d lib",
"build-es6": "rimraf es6 && cross-env NODE_ENV=es6 babel ./src -d es6",
"build-umd": "cross-env NODE_ENV=development webpack src/index.js umd/Recharts.js",
"build-min": "cross-env NODE_ENV=production webpack src/index.js umd/Recharts.min.js",
"demo": "webpack-dev-server --progress --port 3000 --host 127.0.0.1 --content-base demo --inline --config demo/webpack.config.js",
"test": "cross-env NODE_ENV=test karma start test/karma.conf.js",
"lint": "eslint src",
"autofix": "eslint src --fix",
"bundle-analyse": "cross-env NODE_ENV=analyse webpack src/index.js umd/Recharts.js"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/recharts/recharts.git"
},
"author": "recharts group",
"bugs": {
"url": "https://github.com/recharts/recharts/issues"
},
"homepage": "https://github.com/recharts/recharts",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"classnames": "2.2.5",
"core-js": "2.5.1",
"d3-interpolate": "^1.1.5",
"d3-scale": "1.0.6",
"d3-shape": "1.2.0",
"lodash": "~4.17.4",
"lodash-es": "~4.17.4",
"prop-types": "^15.6.0",
"react-resize-detector": "1.1.0",
"react-smooth": "1.0.0",
"recharts-scale": "0.3.2",
"reduce-css-calc": "1.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "4.1.5",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-use-lodash-es": "^0.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.0",
"cross-env": "^5.0.5",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"lodash-webpack-plugin": "^0.11.4",
"mocha": "^4.0.1",
"pre-commit": "^1.1.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^1.3.0",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"sinon": "^4.0.1",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1"
},
"license": "MIT"
}