package.json 691 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "mgrs",
  3. "version": "1.0.0",
  4. "description": "Utility for converting between WGS84 lat/lng and MGRS coordinates",
  5. "main": "dist/mgrs.js",
  6. "module": "mgrs.js",
  7. "scripts": {
  8. "test": "npm run build && istanbul test _mocha test/test.js",
  9. "build": "mkdir -p dist && rollup -c"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/proj4js/mgrs.git"
  14. },
  15. "keywords": [
  16. "mgrs",
  17. "proj4",
  18. "gis"
  19. ],
  20. "author": "proj4 team",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/proj4js/mgrs/issues"
  24. },
  25. "devDependencies": {
  26. "rollup": "^0.41.4",
  27. "chai": "~1.8.1",
  28. "istanbul": "~0.1.46",
  29. "mocha": "~1.15.1"
  30. }
  31. }