forked from richardhills/ol-react
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 962 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
{
"name": "react-ol",
"version": "0.1.12",
"description": "React interface for openlayers",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"watch": "babel -d lib/ src/ --watch",
"prepublish": "npm run compile",
"postinstall": "node scripts/postinstall.js"
},
"author": "richard.hills@gmail.com",
"devDependencies": {
"@types/prop-types": "^15.5.1",
"babel-cli": "^6.23.0",
"babel-loader": "^6.3.2",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"dependencies": {
"openlayers": "^4.0.1",
"prop-types": "^15.5.10"
},
"repository": "https://github.com/elbstack/react-ol.git",
"license": "MIT"
}