package.json 992 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "gm",
  3. "description": "GraphicsMagick and ImageMagick for node.js",
  4. "version": "1.16.0",
  5. "author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
  6. "keywords": [
  7. "graphics",
  8. "magick",
  9. "image",
  10. "graphicsmagick",
  11. "imagemagick",
  12. "gm",
  13. "convert",
  14. "identify",
  15. "compare"
  16. ],
  17. "engines": {
  18. "node": ">= 0.8.0"
  19. },
  20. "bugs": {
  21. "url": "http://github.com/aheckmann/gm/issues"
  22. },
  23. "licenses": [
  24. {
  25. "type": "MIT",
  26. "url": "http://www.opensource.org/licenses/mit-license.php"
  27. }
  28. ],
  29. "main": "./index",
  30. "scripts": {
  31. "test": "make test-unit; make test;"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/aheckmann/gm.git"
  36. },
  37. "license": "MIT",
  38. "devDependencies": {
  39. "gleak": "0.4.0",
  40. "async": "~0.2.7"
  41. },
  42. "dependencies": {
  43. "debug": "0.7.0",
  44. "array-series": "~0.1.0",
  45. "array-parallel": "~0.1.0",
  46. "stream-to-buffer": "~0.0.1",
  47. "through": "~2.3.1"
  48. }
  49. }