forked from Charmatzis/react-leaflet-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.02 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
59
60
61
62
63
{
"name": "react-leaflet-google",
"version": "4.0.0",
"description": "google layer as React compoment for Leaflet",
"main": "dist/react-leaflet-google.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:lib": "rm -Rf ./lib",
"compile:lib": "babel src --out-dir lib",
"build:lib": "npm run compile:lib",
"build:dist": "webpack src/index.js dist/react-leaflet-google.js & webpack -p src/index.js dist/react-leaflet-google.min.js",
"build": "npm run build:lib && npm run build:dist",
"example": "webpack-dev-server --config ./example/webpack.config.js",
"lint": "eslint ./src",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Charmatzis/react-leaflet-google.git"
},
"keywords": [
"react",
"leaflet",
"google"
],
"author": "Christos Charmatzis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Charmatzis/react-leaflet-google/issues"
},
"homepage": "https://github.com/Charmatzis/react-leaflet-google#readme",
"peerDependencies": {
"leaflet": "^1.3.0",
"prop-types": "^15.5.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-leaflet": "^2.0.0",
"google-maps": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.1.18",
"eslint": "^3.8.1",
"eslint-plugin-react": "^6.4.1",
"google-maps": "^3.3.0",
"leaflet": "^1.3.4",
"lodash.isequal": "^4.4.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-leaflet": "^2.0.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.12.1"
}
}