-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "@foo-software/react-charts-donut",
"version": "2.1.9",
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"description": "A donut chart component for React",
"homepage": "https://github.com/foo-software/foo-react-charts/tree/master/packages/react-charts-donut",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"lighthouse",
"react",
"charts",
"donut chart"
],
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/foo-react-charts.git"
},
"scripts": {
"build": "tsc && npm run build:styles",
"build:styles": "cp src/DonutChart.css dist/DonutChart.css",
"prepare": "npm run build"
},
"dependencies": {
"classnames": "^2.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.16",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}