package.json 671 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "jpeg-js",
  3. "version": "0.3.7",
  4. "description": "A pure javascript JPEG encoder and decoder",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node_modules/.bin/tape test/*.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/eugeneware/jpeg-js"
  12. },
  13. "keywords": [
  14. "jpeg",
  15. "jpg",
  16. "encoder",
  17. "decoder",
  18. "codec",
  19. "image",
  20. "javascript",
  21. "js"
  22. ],
  23. "author": "Eugene Ware <eugene@noblesamurai.com>",
  24. "license": "BSD-3-Clause",
  25. "bugs": {
  26. "url": "https://github.com/eugeneware/jpeg-js/issues"
  27. },
  28. "dependencies": {},
  29. "devDependencies": {
  30. "redtape": "~0.1.0",
  31. "tape": "~2.3.2"
  32. }
  33. }