-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
52
{
"name": "react-svg-circle-chart",
"version": "1.1.0",
"description": "A simple React SVG Circle Chart",
"main": "build/index.js",
"module": "build/index.es.js",
"umd": "build/index.umd.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rm -rf build && rollup -c",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonoirwinrsa/react-svg-circle-chart.git"
},
"keywords": [
"react",
"svg",
"cicrle",
"chart"
],
"author": "Jonathan Irwin",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonoirwinrsa/react-svg-circle-chart/issues"
},
"homepage": "https://github.com/jonoirwinrsa/react-svg-circle-chart#readme",
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.3"
}
}