package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "proj4",
  3. "version": "2.3.4-alpha",
  4. "description": "Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.",
  5. "main": "lib/index.js",
  6. "directories": {
  7. "test": "test",
  8. "doc": "docs"
  9. },
  10. "scripts": {
  11. "test": "./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha test/test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/proj4js/proj4js.git"
  16. },
  17. "author": "",
  18. "license": "MIT",
  19. "jam": {
  20. "main": "dist/proj4.js",
  21. "include": [
  22. "dist/proj4.js",
  23. "README.md",
  24. "AUTHORS",
  25. "LICENSE.md"
  26. ]
  27. },
  28. "devDependencies": {
  29. "grunt-cli": "~0.1.13",
  30. "grunt": "~0.4.2",
  31. "grunt-contrib-connect": "~0.6.0",
  32. "grunt-contrib-jshint": "~0.8.0",
  33. "chai": "~1.8.1",
  34. "mocha": "~1.17.1",
  35. "grunt-mocha-phantomjs": "~0.4.0",
  36. "browserify": "~3.24.5",
  37. "grunt-browserify": "~1.3.0",
  38. "grunt-contrib-uglify": "~0.3.2",
  39. "curl": "git://github.com/cujojs/curl.git",
  40. "istanbul": "~0.2.4",
  41. "tin": "~0.4.0"
  42. },
  43. "dependencies": {
  44. "mgrs": "0.0.0"
  45. }
  46. }