-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
25 lines (25 loc) · 1001 Bytes
/
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
{
"name": "markerclustererplus",
"version": "2.1.4",
"keywords": [
"markerclustererplus",
"google",
"maps"
],
"repository": {
"type": "git",
"url": "[email protected]:mahnunchik/markerclustererplus.git"
},
"main": "dist/markerclusterer.js",
"scripts": {
"build": "uglifyjs src/markerclusterer.js --compress --output dist/markerclusterer.min.js",
"build:legacy_packaged": "uglifyjs src/markerclusterer.js --compress --output src/markerclusterer_packaged.js --preamble \"console.warn('This file has been deprecated and will be removed in the next release.');\"",
"build:legacy_min": "uglifyjs src/markerclusterer.js --compress --output src/markerclusterer.min.js --preamble \"console.warn('This file has been deprecated and will be removed in the next release.');\"",
"build:legacy": "npm run build:legacy_packaged && npm run build:legacy_min"
},
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"uglify-js": "^2.4.17"
}
}