-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·42 lines (42 loc) · 1.8 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
{
"name": "leaflet.markercluster.list",
"version": "0.4.4",
"description": "leaflet.markercluster subplugin that lists all clustered elements in a table, suitable for mobile devices",
"keywords": [
"leaflet",
"markercluster",
"clustering"
],
"author": "Adam Mertel, University of Vienna",
"license": "ISC",
"main": "dist/leaflet-markercluster-list.js",
"files": [
"dist"
],
"scripts": {
"banners": "run-s banner-js-src banner-js banner-css",
"banner-js-src": "concat-cli -f banner dist/leaflet-markercluster-list.src.js -o dist/leaflet-markercluster-list.src.js",
"banner-js": "concat-cli -f banner dist/leaflet-markercluster-list.js -o dist/leaflet-markercluster-list.js",
"banner-css": "concat-cli -f banner dist/leaflet-markercluster-list.css -o dist/leaflet-markercluster-list.css",
"create-dist-folder": "mkdirp dist",
"babel": "babel src --out-file dist/leaflet-markercluster-list.src.js",
"minify": "babel --plugins=transform-remove-console,minify-mangle-names dist/leaflet-markercluster-list.src.js --out-file dist/leaflet-markercluster-list.js --minified --no-comments",
"onchange-js": "onchange src/**/*.js -- npm run build",
"onchange-css": "onchange src/**/*.scss -- npm run sass",
"sass": "sass src/leaflet-markercluster-list.scss > dist/leaflet-markercluster-list.css",
"build": "run-s create-dist-folder sass babel minify banners",
"start": "run-p onchange-css onchange-js build"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"concat-cli": "^4.0.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.0",
"sass": "^1.77.8"
}
}