forked from zcreativelabs/react-simple-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
53
54
55
56
57
58
{
"name": "react-simple-maps",
"version": "0.12.1",
"description": "An svg map component built with and for React",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel --watch src --out-dir lib",
"prepare": "npm run build",
"test": "mocha './tests/**/*.spec.js' --compilers js:babel-core/register"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcreativelabs/react-simple-maps.git"
},
"keywords": [
"react",
"maps",
"worldmap",
"geo",
"d3"
],
"author": "Richard Zimerman <[email protected]> (https://github.com/zimrick)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zcreativelabs/react-simple-maps/issues"
},
"homepage": "https://github.com/zcreativelabs/react-simple-maps#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"expect": "^23.5.0",
"mocha": "^5.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-utils": "^0.0.1"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
},
"dependencies": {
"d3-geo": "^1.10.0",
"d3-geo-projection": "^2.4.0",
"topojson-client": "^3.0.0"
}
}