forked from hustcc/echarts-for-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.1 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": "echarts-for-react",
"version": "3.0.2",
"description": " Apache Echarts components for React.",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"esm",
"src"
],
"scripts": {
"docs:dev": "NODE_ENV=development dumi dev",
"docs:build": "NODE_ENV=production dumi build",
"docs:deploy": "rimraf dist && npm run docs:build && gh-pages -d dist",
"start": "npm run docs:dev",
"lint": "eslint src __tests__ && prettier src __tests__ --check",
"fix": "eslint src __tests__ --fix && prettier src __tests__ --write",
"clean": "rimraf lib esm dist",
"test": "jest",
"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 test && npm run lib"
},
"repository": {
"type": "git",
"url": "https://github.com/hustcc/echarts-for-react.git"
},
"keywords": [
"react",
"component",
"echarts-react",
"echarts",
"react-echarts",
"chart",
"charts",
"graph",
"react-component"
],
"author": "hustcc (http://github.com/hustcc)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcc/echarts-for-react/issues"
},
"homepage": "https://github.com/hustcc/echarts-for-react",
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-angular": "^12.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"cross-env": "^7.0.3",
"dumi": "^1.1.6",
"dumi-theme-default": "^1.0.6",
"echarts": "^5.0.2",
"echarts-gl": "^2.0.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"husky": "^5.1.1",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-electron": "^0.1.11",
"lint-md-cli": "^0.1.2",
"lint-staged": "^10.5.4",
"lodash.clonedeep": "^4.5.0",
"miz": "^1.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2"
},
"dependencies": {
"size-sensor": "^1.0.1",
"fast-deep-equal": "^3.1.3"
},
"peerDependencies": {
"react": "^15.0.0 || >=16.0.0",
"echarts": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"jest": {
"runner": "jest-electron/runner",
"testEnvironment": "jest-electron/environment",
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**",
"!**/vendor/**"
],
"testRegex": "/__tests__/.*-spec\\.tsx?$"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"lint-md --fix"
]
}
}