package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "proj4",
  3. "version": "2.9.0",
  4. "description": "Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.",
  5. "homepage": "https://proj4js.github.io/proj4js/",
  6. "main": "dist/proj4-src.js",
  7. "module": "lib/index.js",
  8. "directories": {
  9. "test": "test",
  10. "doc": "docs"
  11. },
  12. "scripts": {
  13. "prepare": "grunt",
  14. "build": "grunt",
  15. "build:tmerc": "grunt build:tmerc",
  16. "test": "npm run build && istanbul test node_modules/mocha/bin/_mocha test/test.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/proj4js/proj4js.git"
  21. },
  22. "author": "",
  23. "license": "MIT",
  24. "devDependencies": {
  25. "chai": "~4.1.2",
  26. "curl-amd": "^0.8.12",
  27. "grunt": "^1.0.1",
  28. "grunt-cli": "~1.2.0",
  29. "grunt-contrib-connect": "~1.0.2",
  30. "grunt-contrib-jshint": "~3.2.0",
  31. "grunt-contrib-uglify": "~3.1.0",
  32. "grunt-mocha-phantomjs": "~4.0.0",
  33. "grunt-rollup": "^6.0.0",
  34. "istanbul": "~0.4.5",
  35. "mocha": "~4.0.0",
  36. "rollup": "^0.50.0",
  37. "rollup-plugin-json": "^2.3.0",
  38. "rollup-plugin-node-resolve": "^3.0.0",
  39. "rollup-plugin-replace": "^2.0.0",
  40. "tin": "~0.5.0"
  41. },
  42. "dependencies": {
  43. "mgrs": "1.0.0",
  44. "wkt-parser": "^1.3.1"
  45. }
  46. }