forked from weknowinc/react-bubble-chart-d3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 892 Bytes
/
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
{
"name": "@testboxlab/react-bubble-chart-d3",
"version": "2.0.0",
"description": "ReactJS component to display data as a bubble chart using D3.",
"keywords": [
"ReactJS",
"Component",
"D3",
"Charts",
"Bubble",
"Graphics"
],
"author": "weKnow Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TestBoxLab/react-bubble-chart-d3"
},
"source": "src/index.js",
"main": "lib/index.js",
"module": "lib/module.js",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"d3": "^4.13.0",
"prop-types": "^15.6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build",
"prepublish": "npm run build"
},
"devDependencies": {
"parcel": "^2.8.3"
},
"publishConfig": {
"access": "public"
}
}