forked from zcreativelabs/react-simple-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.9 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
62
63
64
65
66
67
68
69
{
"name": "@omtanke/react-simple-maps",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"version": "3.0.0-omtanke.4",
"description": "An svg map chart component built with and for React",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"prepare": "rollup -c",
"test": "mocha './tests/**/*.spec.js' --compilers js:@babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omtanke/react-simple-maps.git"
},
"keywords": [
"react",
"maps",
"charts",
"worldmap",
"usa",
"d3-geo"
],
"author": "Richard Zimerman <richard@zcreativelabs.com> (https://github.com/zimrick)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omtanke/react-simple-maps/issues"
},
"homepage": "https://github.com/omtanke/react-simple-maps#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-external-helpers": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/register": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"expect": "^23.5.0",
"mocha": "^5.2.0",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^16.8.0 || 17.x || 18.x || 19.x",
"react-dom": "^16.8.0 || 17.x || 18.x || 19.x"
},
"dependencies": {
"d3-color": "^3.1.0",
"d3-geo": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"topojson-client": "^3.1.0"
}
}