package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "client-compress",
  3. "version": "2.2.2",
  4. "description":
  5. "A client side JavaScript image compression library. Forked from compress.js (alextanhongpin), and improved rewrite by David Moodie.",
  6. "main": "dist/index.js",
  7. "files": ["dist/index.js"],
  8. "scripts": {
  9. "test": "echo \"Error: no test specified\" && exit 1",
  10. "build": "webpack -p --config webpack.config.js",
  11. "watch":
  12. "webpack --config webpack.config.js --watch -o example_test/out/index.js --mode development --devtool source-map",
  13. "precommit": "pretty-quick --staged"
  14. },
  15. "author": "David Moodie <david@davidmoodie.com> (https://davidmoodie.com)",
  16. "license": "MIT",
  17. "devDependencies": {
  18. "babel-core": "^6.26.3",
  19. "babel-loader": "^7.1.4",
  20. "babel-plugin-add-module-exports": "^0.2.1",
  21. "babel-plugin-transform-class-properties": "^6.24.1",
  22. "babel-plugin-transform-runtime": "^6.23.0",
  23. "babel-preset-env": "^1.6.1",
  24. "husky": "^0.14.3",
  25. "prettier": "1.12.1",
  26. "pretty-quick": "^1.4.1",
  27. "webpack": "^4.7.0",
  28. "webpack-cli": "^2.1.2"
  29. },
  30. "dependencies": {
  31. "babel-runtime": "^6.26.0"
  32. },
  33. "keywords": ["javascript", "image", "compression", "base64"],
  34. "repository": "github:davejm/client-compress",
  35. "homepage": "https://github.com/davejm/client-compress",
  36. "bugs": "https://github.com/davejm/client-compress/issues"
  37. }