package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "pngjs",
  3. "version": "3.4.0",
  4. "description": "PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.",
  5. "contributors": [
  6. "Alexandre Paré",
  7. "Gaurav Mali",
  8. "Gusts Kaksis",
  9. "Kuba Niegowski",
  10. "Luke Page",
  11. "Pietajan De Potter",
  12. "Steven Sojka",
  13. "liangzeng",
  14. "Michael Vogt",
  15. "Xin-Xin Wang",
  16. "toriningen",
  17. "Eugene Kulabuhov"
  18. ],
  19. "homepage": "https://github.com/lukeapage/pngjs",
  20. "keywords": [
  21. "PNG",
  22. "decoder",
  23. "encoder",
  24. "js-png",
  25. "node-png",
  26. "parser",
  27. "png",
  28. "png-js",
  29. "png-parse",
  30. "pngjs"
  31. ],
  32. "engines": {
  33. "node": ">=4.0.0"
  34. },
  35. "main": "./lib/png.js",
  36. "directories": {
  37. "lib": "lib",
  38. "example": "examples",
  39. "test": "test"
  40. },
  41. "scripts": {
  42. "build": "npm run prepublish",
  43. "prepublish": "npm run browserify",
  44. "browserify": "browserify lib/png.js --standalone png > browser.js",
  45. "coverage": "istanbul -- cover node_modules/tape/bin/tape test/*-spec.js nolarge",
  46. "coverage-report": "npm run coverage && istanbul report html",
  47. "coveralls": "cat ./coverage/lcov.info | coveralls",
  48. "test": "npm run lint && tape test/*-spec.js | tap-dot && node test/run-compare",
  49. "lint": "eslint lib"
  50. },
  51. "repository": {
  52. "type": "git",
  53. "url": "git://github.com/lukeapage/pngjs2.git"
  54. },
  55. "license": "MIT",
  56. "bugs": {
  57. "url": "https://github.com/lukeapage/pngjs2/issues"
  58. },
  59. "devDependencies": {
  60. "browserify": "^14.5.0",
  61. "buffer-equal": "1.0.0",
  62. "connect": "^3.4.0",
  63. "eslint": "^4.1.0",
  64. "istanbul": "^0.4.4",
  65. "phantomjs-prebuilt": "^2.1.7",
  66. "serve-static": "^1.10.0",
  67. "tap-dot": "^2.0.0",
  68. "tape": "^4.0.2"
  69. }
  70. }