forked from mongodb-js/react-leaflet-heatmap-layer
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
103 lines (103 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-leaflet-heatmap-layer",
"version": "2.3.2",
"description": "A custom layer for heatmaps in react-leaflet",
"main": "lib/HeatmapLayer.js",
"scripts": {
"compile": "npm run clean; npm run transpile",
"transpile": "./node_modules/.bin/babel src/HeatmapLayer.js --out-file lib/HeatmapLayer.js",
"clean": "rm -rf ./lib/*",
"test": "jest",
"test:watch": "jest --watch",
"example": "webpack-dev-server --config ./example/webpack.config.js",
"lint": "eslint ./src ./example/index.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenGov/react-leaflet-heatmap-layer.git"
},
"keywords": [
"react",
"leaflet",
"layer",
"map",
"maps",
"gis",
"geo",
"geojson",
"heatmap",
"heat"
],
"author": "Jeremiah Hall <[email protected]>",
"license": "MIT",
"peerDependencies": {
"leaflet": "^1.0.0",
"react-leaflet": "^2.0.0",
"react": "^16.9.0"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-do-expressions": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-proto-to-assign": "^7.5.5",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-object-assign": "^1.2.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-arrow-function": "^2.0.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lean-imports": "^0.3.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.9.0",
"leaflet": "^1.0.0",
"prettier": "^1.18.2",
"prop-types": "^15.6.2",
"react": "^16.9.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^4.12.13",
"react-leaflet": "^2.0.0",
"react-transform-hmr": "^1.0.4",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
},
"dependencies": {
"lodash.filter": "^4.6.0",
"lodash.foreach": "^4.5.0",
"lodash.isnumber": "^3.0.3",
"lodash.map": "^4.6.0",
"lodash.max": "^4.0.1",
"lodash.min": "^4.0.1",
"lodash.pluck": "^3.1.2",
"lodash.reduce": "^4.6.0",
"react-addons-shallow-compare": "^15.6.2",
"simpleheat": "^0.4.0"
}
}