package.json 878 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "pixelmatch",
  3. "version": "4.0.2",
  4. "description": "The smallest and fastest pixel-level image comparison library.",
  5. "main": "index.js",
  6. "bin": {
  7. "pixelmatch": "bin/pixelmatch"
  8. },
  9. "dependencies": {
  10. "pngjs": "^3.0.0"
  11. },
  12. "devDependencies": {
  13. "eslint": "^3.2.2",
  14. "eslint-config-mourner": "^2.0.1",
  15. "tap": "^6.3.0"
  16. },
  17. "scripts": {
  18. "pretest": "eslint index.js bin/pixelmatch test/test.js",
  19. "test": "tap test/test.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/mapbox/pixelmatch.git"
  24. },
  25. "keywords": [
  26. "image",
  27. "comparison",
  28. "diff"
  29. ],
  30. "eslintConfig": {
  31. "extends": "mourner"
  32. },
  33. "author": "Vladimir Agafonkin",
  34. "license": "ISC",
  35. "bugs": {
  36. "url": "https://github.com/mapbox/pixelmatch/issues"
  37. },
  38. "homepage": "https://github.com/mapbox/pixelmatch#readme"
  39. }