-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.24 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.24 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
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
{
"name": "flex-chart",
"version": "1.2.5",
"description": "Flexible charts that encapsulate the automated layout processing of echarts",
"repository": "https://github.com/lsbFlying/flex-chart.git",
"author": "liushanbao <1262300490@qq.com>",
"homepage": "https://github.com/lsbFlying/flex-chart",
"bugs": "https://github.com/lsbFlying/flex-chart/issues",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"esm",
"src"
],
"scripts": {
"start": "react-scripts start",
"okPublish": "npm run build && npm publish --registry=https://registry.npmjs.org/",
"clean": "rimraf lib esm dist",
"lib": "run-p lib:*",
"lib:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"lib:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"build": "npm run clean && npm run lib"
},
"peerDependencies": {
"echarts": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"lodash.merge": "^4.6.2",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"@types/echarts": "^4.9.16",
"@types/jest": "^28.1.8",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"echarts": "^5.3.3",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"eslintIgnore": [
"dist",
"lib",
"esm"
],
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"license": "MIT",
"keywords": [
"echarts",
"echarts-for-react",
"charts",
"react-echarts",
"react",
"component",
"echarts-react",
"echarts",
"chart",
"graph",
"react-component"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}