{ "name": "leaflet", "version": "1.9.2", "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": "^2.1.0", "chai": "^5.1.0", "eslint": "^8.57.0", "eslint-config-mourner": "^3.0.0", "eslint-plugin-import": "^2.29.1", "http-server": "^14.1.1", "husky": "^9.0.11", "karma": "^6.4.3", "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": "^15.2.2", "mocha": "^10.4.0", "prosthetic-hand": "^2.0.0", "rollup": "^4.13.2", "rollup-plugin-git-version": "^0.3.1", "simple-git": "^3.23.0", "sinon": "^17.0.1", "ssri": "^10.0.5", "uglify-js": "^3.17.4", "ui-event-simulator": "^2.0.0" }, "main": "dist/leaflet-src.js", "module": "dist/leaflet-src.esm.js", "style": "dist/leaflet.css", "files": [ "dist", "src", "!dist/leaflet.zip", "!*.leafdoc", "CHANGELOG.md" ], "scripts": { "debug": "http-server -c-1", "docs": "node ./build/docs.mjs && node ./build/integrity.mjs", "test": "karma start ./spec/karma.conf.js", "coverage": "karma start ./spec/karma.conf.js --coverage --single-run", "build": "npm run rollup && npm run uglify", "lint": "eslint . --ext js,mjs,cjs", "lintfix": "npm run lint -- --fix", "rollup": "rollup -c build/rollup-config.mjs", "watch": "rollup -w -c build/rollup-config.mjs", "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", "bundlemon": "bundlemon --subProject js --defaultCompression none && bundlemon --subProject js-gzip --defaultCompression gzip", "serve": "cd docs && bundle exec jekyll serve", "prepare": "husky" }, "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" } }