package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "lerc",
  3. "browser": "LercDecode.js",
  4. "bugs": {
  5. "url": "https://github.com/esri/lerc/issues"
  6. },
  7. "description": "Rapid decoding of Lerc compressed raster data for any standard pixel type.",
  8. "version": "2.0.0",
  9. "author": "Esri <dev_tools@esri.com> (http://developers.arcgis.com)",
  10. "contributors": [
  11. "Johannes Schmid",
  12. "Chayanika Khatua",
  13. "Wenxue Ju"
  14. ],
  15. "devDependencies": {
  16. "gh-release": "^2.2.1",
  17. "jsdoc-to-markdown": "^2.0.1",
  18. "jshint": "^2.9.4",
  19. "uglify-js": "^2.7.5"
  20. },
  21. "files": [
  22. "LercDecode.js",
  23. "LercDecode.min.js"
  24. ],
  25. "homepage": "https://github.com/Esri/lerc",
  26. "license": "Apache-2.0",
  27. "main": "LercDecode.js",
  28. "readmeFilename": "README.md",
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/Esri/lerc.git"
  32. },
  33. "scripts": {
  34. "lint": "jshint LercDecode.js",
  35. "build": "uglifyjs LercDecode.js -o LercDecode.min.js --comments",
  36. "docs": "jsdoc2md --template README.hbs --files LercDecode.js",
  37. "release": "./release.sh"
  38. }
  39. }