-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "@ggcity/gg-map-portal",
"version": "1.0.0",
"description": "Web component for making configurable maps with extensive overlays",
"source": "./src/gg-map-portal.js",
"module": "./public/module.js",
"author": "Ethan Rucker",
"license": "GPL-3.0",
"flat": true,
"scripts": {
"build": "parcel build --no-content-hash ./src/gg-map-portal.js -d public --public-url ./"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"bootstrap": "^5.1.1",
"js-yaml": "^4.1.0",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.5.3"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.0.1",
"cssnano": "^4.1.11",
"cypress": "^9.1.1",
"json-server": "^0.17.0",
"parcel": "latest"
},
"resolutions": {
"leaflet": "1.7.1"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
],
"main": "./public/gg-map-portal.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ggcity/map-portal.git"
},
"keywords": [
"map",
"portal"
],
"bugs": {
"url": "https://github.com/ggcity/map-portal/issues"
},
"homepage": "https://github.com/ggcity/map-portal#readme"
}