package.json 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "pg-minify",
  3. "version": "1.6.3",
  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": ">=12.0.0"
  41. },
  42. "devDependencies": {
  43. "eslint": "8.36.0",
  44. "istanbul": "0.4.5",
  45. "jasmine-node": "3.0.0",
  46. "typescript": "5.0.2"
  47. }
  48. }