forked from cemrehancavdar/hyperleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "hyperleaflet",
"version": "0.4.4",
"description": "Leaflet for HTML",
"author": "cemrehancavdar",
"license": "MIT",
"source": "src/hyperleaflet.js",
"type": "module",
"exports": {
"default": "./dist/hyperleaflet.js"
},
"main": "./dist/hyperleaflet.js",
"module": "./dist/hyperleaflet.esm.js",
"umd:main": "./flask-app/app/static/hyperleaflet.js",
"scripts": {
"build": "microbundle --f umd",
"build:esm": "microbundle --external leaflet -f esm --compress false",
"dev": "microbundle watch --external leaflet -f esm --compress false",
"test": "vitest"
},
"devDependencies": {
"@happy-dom/jest-environment": "^8.4.4",
"@testing-library/dom": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"happy-dom": "^8.4.4",
"microbundle": "^0.15.1",
"prettier": "2.8.0",
"vitest": "^0.28.5"
},
"dependencies": {
"leaflet": "^1.9.3"
}
}