Files
leaflet/package.json
dependabot[bot] 4e1591d621 Bump rollup from 4.40.2 to 4.45.0
Bumps [rollup](https://github.com/rollup/rollup) from 4.40.2 to 4.45.0.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v4.40.2...v4.45.0)

---
updated-dependencies:
- dependency-name: rollup
  dependency-version: 4.45.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-14 15:05:59 +00:00

79 lines
2.7 KiB
JSON

{
"name": "leaflet",
"version": "2.0.0-alpha",
"homepage": "https://leafletjs.com/",
"description": "JavaScript library for mobile-friendly interactive maps",
"devDependencies": {
"@mapbox/eslint-plugin-script-tags": "^1.0.0",
"@rollup/plugin-json": "^6.1.0",
"bundlemon": "^3.1.0",
"chai": "^5.2.0",
"eslint": "^9.26.0",
"eslint-config-mourner": "^4.0.2",
"eslint-plugin-import-x": "^4.11.1",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-safarinative-launcher": "^1.1.0",
"karma-time-stats-reporter": "^0.1.0",
"leafdoc": "^2.3.0",
"lint-staged": "^16.0.0",
"mocha": "^11.2.2",
"prosthetic-hand": "^2.0.0",
"rollup": "^4.45.0",
"rollup-plugin-git-version": "^0.3.1",
"simple-git": "^3.27.0",
"sinon": "^20.0.0",
"ssri": "^12.0.0",
"uglify-js": "^3.19.3",
"ui-event-simulator": "^2.0.0"
},
"type": "module",
"exports": {
"./src/": "./src/",
"./dist/": "./dist/",
".": "./dist/leaflet-src.js"
},
"style": "dist/leaflet.css",
"files": [
"dist",
"src",
"!dist/leaflet.zip",
"!*.leafdoc",
"CHANGELOG.md"
],
"scripts": {
"debug": "http-server -c-1",
"docs": "node ./build/docs.js && node ./build/integrity.js",
"test": "karma start ./spec/karma.conf.cjs",
"coverage": "karma start ./spec/karma.conf.cjs --coverage --single-run",
"build": "npm run rollup && npm run uglify && npm run uglify-global",
"lint": "eslint .",
"lintfix": "npm run lint -- --fix",
"rollup": "rollup -c build/rollup-config.js",
"watch": "rollup -w -c build/rollup-config.js",
"uglify": "uglifyjs dist/leaflet-src.js -c -m -o dist/leaflet.js --source-map filename=dist/leaflet.js.map --source-map content=dist/leaflet-src.js.map --source-map url=leaflet.js.map --comments",
"uglify-global": "uglifyjs dist/leaflet-global-src.js -c -m -o dist/leaflet-global.js --source-map filename=dist/leaflet-global.js.map --source-map content=dist/leaflet-global-src.js.map --source-map url=leaflet-global.js.map --comments",
"bundlemon": "bundlemon --subProject js --defaultCompression none && bundlemon --subProject js-gzip --defaultCompression gzip",
"serve": "cd docs && bundle exec jekyll serve",
"prepare": "husky",
"version": "node ./build/version.js && git add ./src/Leaflet.js"
},
"repository": {
"type": "git",
"url": "git://github.com/Leaflet/Leaflet.git"
},
"keywords": [
"gis",
"map"
],
"license": "BSD-2-Clause",
"lint-staged": {
"*.(js|mjs|md)": "eslint --cache --fix"
}
}