-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "remax-chart",
"version": "1.0.3",
"description": "echarts for remax",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"remax",
"echarts"
],
"author": "leihancn <leihanchenzhou@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/LeiHanCN/remax-chart.git"
},
"homepage": "https://github.com/LeiHanCN/remax-chart/blob/master/README.md",
"files": [
"lib"
],
"scripts": {
"dev": "remax build -w -t",
"lint": "eslint ./{src,example}/* --ext '.ts,.tsx,.js,.jsx' --fix",
"format": "prettier --write '{src,example}/**/*.{ts,tsx,js,jsx}'",
"cz": "yarn lint && yarn format && git add . && git cz",
"build": "rimraf lib && tsc && cp src/echarts.js lib/echarts.js",
"upgrade-dependencies": "npx npm-check-updates -u && yarn"
},
"devDependencies": {
"@types/echarts": "^4.6.4",
"@types/react": "^16.9.43",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"cross-env": "^7.0.2",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.5",
"git-cz": "^4.7.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"remax": "^2.6.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"remax": ">=2.7.6"
}
}