forked from lephisto/grafana-trackmap-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 954 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
35
36
37
38
39
40
41
42
43
{
"name": "grafana-trackmap-panel",
"version": "2.0.4",
"description": "A plugin for Grafana that visualizes GPS points as a line on an interactive map.",
"main": "src/module.js",
"scripts": {
"build": "grunt"
},
"author": {
"name": "Carey Metcalfe",
"url": "https://cmetcalfe.ca"
},
"keywords": [
"trackmap",
"track",
"map",
"gps",
"latitude",
"longitude",
"grafana",
"plugin",
"panel"
],
"repository": {
"type": "git",
"url": "https://github.com/pR0Ps/grafana-trackmap-panel.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"grunt": "^1.0.3",
"grunt-babel": "^8.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"load-grunt-tasks": "^4.0.0"
},
"dependencies": {
"leaflet": "^1.3.4",
"moment": "^2.22.2"
}
}