UNPKG

esri-leaflet-vector

Version:

Esri vector basemap and vector tile layer plugin for Leaflet.

104 lines (103 loc) 3.25 kB
{ "name": "esri-leaflet-vector", "description": "Esri vector basemap and vector tile layer plugin for Leaflet.", "version": "4.3.2", "author": "John Gravois (https://johngravois.com)", "contributors": [ "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)", "Gavin Rehkemper <grehkemper@esri.com> (https://gavinr.com)", "Jacob Wasilkowski (https://jwasilgeo.github.io)", "George Owen (https://geowen.dev/)" ], "bugs": { "url": "https://github.com/Esri/esri-leaflet-vector/issues" }, "peerDependencies": { "esri-leaflet": ">2.3.0", "leaflet": "^1.5.0", "maplibre-gl": "^2.0.0 || ^3.0.0 || ^4.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-terser": "^0.3.0", "chai": "4.3.7", "chokidar-cli": "^3.0.0", "eslint": "^9.24.0", "eslint-config-mourner": "^4.0.2", "eslint-config-prettier": "^10.1.2", "eslint-plugin-import-x": "^4.10.2", "esri-leaflet": "^3.0.0", "gh-release": "^7.0.2", "http-server": "^14.1.1", "karma": "^6.4.1", "karma-chrome-launcher": "^3.1.0", "karma-coverage": "^2.2.0", "karma-edgium-launcher": "github:matracey/karma-edgium-launcher", "karma-firefox-launcher": "^2.1.2", "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", "karma-safari-launcher": "~1.0.0", "karma-sinon-chai": "^2.0.2", "karma-sourcemap-loader": "^0.3.8", "leaflet": "^1.5.0", "mkdirp": "^2.1.3", "mocha": "^10.2.0", "npm-run-all": "^4.1.5", "prettier": "3.5.3", "rollup": "^2.79.1", "sinon": "^15.0.1", "sinon-chai": "3.7.0" }, "files": [ "src/**/*.js", "dist/*.js", "dist/*.js.map", "dist/*.json", "index.d.ts" ], "homepage": "https://github.com/Esri/esri-leaflet-vector#readme", "jsnext:main": "src/EsriLeafletVector.js", "jspm": { "registry": "npm", "format": "es6", "main": "src/EsriLeafletVector.js" }, "keywords": [ "maplibre", "arcgis", "leaflet", "leafletjs", "maps" ], "license": "Apache-2.0", "main": "dist/esri-leaflet-vector-debug.js", "module": "src/EsriLeafletVector.js", "browser": "dist/esri-leaflet-vector-debug.js", "types": "index.d.ts", "readmeFilename": "README.md", "repository": { "type": "git", "url": "git+https://github.com/Esri/esri-leaflet-vector.git" }, "scripts": { "prebuild": "mkdirp dist", "build": "rollup -c profiles/debug.js & rollup -c profiles/production.js", "build-dev": "rollup -c profiles/debug.js", "lint": "npm run eslint && npm run prettier", "eslint": "eslint .", "eslintfix": "npm run eslint -- --fix", "prettier": "npx prettier . --check", "prettierfix": "npx prettier . --write", "start-watch": "chokidar src -c \"npm run build\"", "start-watch-dev": "chokidar src -c \"npm run build-dev\"", "start": "run-p start-watch serve", "start-dev": "run-p start-watch-dev serve", "dev": "npm run start-dev", "serve": "http-server -p 8765 -c-1 -o", "pretest": "npm run build-dev", "test": "npm run lint && karma start", "release": "./scripts/release.sh" } }