package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "pg-minify",
  3. "version": "1.6.5",
  4. "description": "Minifies PostgreSQL scripts.",
  5. "main": "lib/index.js",
  6. "typings": "typescript/pg-minify.d.ts",
  7. "scripts": {
  8. "test": "jasmine-node --captureExceptions test",
  9. "lint": "eslint ./lib ./test/*.js"
  10. },
  11. "files": [
  12. "lib",
  13. "typescript"
  14. ],
  15. "homepage": "https://github.com/vitaly-t/pg-minify",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/vitaly-t/pg-minify.git"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/vitaly-t/pg-minify/issues",
  22. "email": "vitaly.tomilov@gmail.com"
  23. },
  24. "keywords": [
  25. "sql",
  26. "postgresql",
  27. "comments",
  28. "minify",
  29. "uglify",
  30. "compress",
  31. "strip",
  32. "remove"
  33. ],
  34. "author": {
  35. "name": "Vitaly Tomilov",
  36. "email": "vitaly.tomilov@gmail.com"
  37. },
  38. "license": "MIT",
  39. "engines": {
  40. "node": ">=14.0.0"
  41. },
  42. "devDependencies": {
  43. "@eslint/js": "9.7.0",
  44. "eslint": "9.7.0",
  45. "istanbul": "0.4.5",
  46. "jasmine-node": "3.0.0",
  47. "typescript": "5.5.3"
  48. }
  49. }