-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 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
43
44
45
46
47
48
49
50
51
52
{
"name": "leaflet-regular-grid-cluster",
"version": "0.3.4",
"description": "leaflet plugin that implements custom grid-style visualisation and clustering method",
"main": "dist/leaflet-regulargridcluster.js",
"repository": {
"type": "git",
"url": "git+https://github.com/adammertel/Leaflet.RegularGridCluster.git"
},
"keywords": [
"leaflet",
"maps",
"grid",
"cluster",
"visualisation"
],
"author": "Adam Mertel, University of Vienna",
"license": "ISC",
"bugs": {
"url": "https://github.com/adammertel/Leaflet.RegularGridCluster/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/adammertel/Leaflet.RegularGridCluster#readme",
"scripts": {
"jshint": "jshint src",
"banners": "run-s banner-js-src banner-js",
"banner-js-src": "concat-cli -f banner dist/leaflet-regulargridcluster.src.js -o dist/leaflet-regulargridcluster.src.js",
"banner-js": "concat-cli -f banner dist/leaflet-regulargridcluster.js -o dist/leaflet-regulargridcluster.js",
"babel": "babel src --out-file dist/leaflet-regulargridcluster.src.js",
"minify": "babel --plugins=transform-remove-console,minify-mangle-names dist/leaflet-regulargridcluster.src.js --out-file dist/leaflet-regulargridcluster.js --minified",
"onchange": "onchange src/**/*.js -- npm run build",
"build": "run-s jshint babel minify banners",
"start": "run-p onchange build"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-plugin-minify-mangle-names": "^0.4.0",
"babel-plugin-transform-remove-console": "^6.9.1",
"concat-cli": "^4.0.0",
"jshint": "^2.9.5",
"npm-run-all": "^4.1.2",
"onchange": "^6.1.0"
},
"peerDependencies": {
"leaflet": "^1.6.0"
}
}