-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "@coreui/react-chartjs",
"version": "3.0.0",
"description": "React wrapper component for Chart.js",
"keywords": [
"coreui",
"chart.js",
"charts",
"react chart.js",
"coreui-react",
"react charts",
"react chart components",
"react chart.js implementation",
"layout",
"component",
"react",
"react-component",
"react component"
],
"homepage": "https://coreui.io/react/docs/components/chart/",
"bugs": {
"url": "https://github.com/coreui/coreui-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coreui/coreui-react.git"
},
"license": "MIT",
"author": "The CoreUI Team (https://github.com/orgs/coreui/people)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rollup --config",
"test": "jest --coverage",
"test:update": "jest --coverage --updateSnapshot"
},
"dependencies": {
"@coreui/chartjs": "^4.0.0",
"chart.js": "^4.4.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/lodash": "^4.17.0",
"@types/react": "18.2.73",
"@types/react-dom": "^18.2.22",
"classnames": "^2.5.1",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.13.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
}
}