4 Star 15 Fork 2

小为 / echarts-for-react

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
package.json 3.10 KB
一键复制 编辑 原始数据 按行查看 历史
hustcc 提交于 2021-02-19 10:37 . chore: v3.0.0 released (#409)
{
"name": "echarts-for-react",
"version": "3.0.0",
"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": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.30",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"cross-env": "^7.0.3",
"dumi": "^1.1.4",
"dumi-theme-default": "^1.0.4",
"echarts": "^5.0.2",
"echarts-gl": "^2.0.2",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"husky": "^5.0.9",
"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.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5"
},
"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"
]
}
}
JavaScript
1
https://gitee.com/hustcc/echarts-for-react.git
git@gitee.com:hustcc/echarts-for-react.git
hustcc
echarts-for-react
echarts-for-react
master

搜索帮助