forked from joakimono/echarts-extension-leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 KB
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
{
"name": "@joakimono/echarts-extension-leaflet",
"version": "1.0.3",
"description": "Leaflet map extension for Apache Echarts 5",
"main": "./dist/echarts-extension-leaflet.js",
"module": "./src/index.js",
"types": "./src/types.d.ts",
"files": [
"LICENSE",
"README.org",
"dist",
"src",
"examples/*.html",
"examples/typescript/*.html",
"examples/typescript/*.org",
"examples/typescript/*.ts",
"examples/typescript/*.js",
"examples/typescript/*.json"
],
"scripts": {
"build:dev": "webpack --mode=development --watch --progress",
"build:prod": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production",
"test": "echo \"Warning: no tests specified\" && exit 0"
},
"keywords": [
"echarts",
"leaflet",
"echarts-extension",
"data-visualization",
"map",
"echarts5"
],
"author": "Joakim Haugen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joakimono/echarts-extension-leaflet.git"
},
"bugs": {
"url": "https://github.com/joakimono/echarts-extension-leaflet/issues",
"email": "joakim.haugen@gmail.com"
},
"homepage": "https://github.com/joakimono/echarts-extension-leaflet#readme",
"peerDependencies": {
"echarts": "^5.0.1",
"leaflet": "^1.7.1"
},
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
}
}