Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

package.json 906 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@mapbox/whoots-js",
  3. "description": "Request tiles from WMS servers that support EPSG:3857",
  4. "version": "3.1.0",
  5. "main": "index.js",
  6. "module": "index.mjs",
  7. "license": "ISC",
  8. "author": "Bryan Housel <bryan@mapbox.com>",
  9. "repository": "mapbox/whoots-js",
  10. "keywords": [
  11. "WMS",
  12. "tiles",
  13. "EPSG:3857"
  14. ],
  15. "dependencies": {},
  16. "devDependencies": {
  17. "coveralls": "^3.0.0",
  18. "documentation": "4.0.0-beta5",
  19. "eslint": "^5.0.0",
  20. "rollup": "0.60.0",
  21. "tap": "^12.0.0"
  22. },
  23. "engines": {
  24. "node": ">=6.0.0"
  25. },
  26. "scripts": {
  27. "build": "rollup -f umd -n WhooTS index.mjs --no-indent --no-strict -o index.js",
  28. "docs": "documentation build index.mjs --lint --github --format html --output docs/",
  29. "lint": "eslint index.mjs server.js test",
  30. "start": "node server.js",
  31. "test": "npm run lint && npm run build && tap --cov test/*.js"
  32. }
  33. }