-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "react-circle-chart",
"version": "1.0.4",
"description": "Simple React donut chart component with flexible options.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"build-lib": "rollup -c"
},
"keywords": [
"react",
"chart",
"donut",
"donut-chart",
"doughnut",
"circle",
"progress",
"circular",
"circle-chart",
"svg"
],
"author": "Blake Senn",
"repository": {
"type": "git",
"url": "https://github.com/blakesenn/react-circle-chart"
},
"homepage": "https://blakesenn.github.io/react-circle-chart",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@storybook/addon-actions": "^6.4.15",
"@storybook/addon-essentials": "^6.4.15",
"@storybook/addon-links": "^6.4.15",
"@storybook/react": "^6.4.15",
"babel-loader": "^8.2.3",
"csstype": "^3.0.10",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.67.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {}
}