-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "@patternslib/pat-leaflet",
"version": "2.2.0",
"description": "Patternslib Leaflet integration",
"license": "MIT",
"main": "./src/leaflet.js",
"dependencies": {
"@patternslib/patternslib": ">=9.9.16",
"fontawesome-free": "^1.0.4",
"jquery": "^3.7.1",
"leaflet": "^1.9.4",
"leaflet-geosearch": "^4.0.0",
"leaflet-minimap": "^3.6.1",
"leaflet-providers": "^2.0.0",
"leaflet-sleep": "^0.5.2",
"leaflet.awesome-markers": "^2.0.5",
"leaflet.fullscreen": "^3.0.2",
"leaflet.locatecontrol": "^0.81.1",
"leaflet.markercluster": "^1.5.3",
"leaflet.simplemarkers": "git+https://github.com/jdomingu/Leaflet.SimpleMarkers.git"
},
"devDependencies": {
"@patternslib/dev": "^3.6.1"
},
"scripts": {
"start": "NODE_ENV=development webpack serve --config webpack.config.js",
"watch": "NODE_ENV=development webpack --config webpack.config.js --watch",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"build:dev": "NODE_ENV=development webpack --config webpack.config.js",
"build:stats": "NODE_ENV=production webpack --config webpack.config.js --json > stats.json",
"test": "jest"
},
"files": [
"/dist",
"/src"
],
"browserslist": [
"defaults"
],
"homepage": "https://github.com/patternslib/pat-leaflet",
"repository": {
"type": "git",
"url": "https://github.com/patternslib/pat-leaflet.git"
},
"keywords": [
"patternslib",
"pattern",
"leaflet",
"map",
"geo"
],
"publishConfig": {
"access": "public"
}
}