package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "aws-ssl-profiles",
  3. "version": "1.1.2",
  4. "main": "lib/index.js",
  5. "author": "https://github.com/wellwelwel",
  6. "description": "AWS RDS SSL certificates bundles.",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/mysqljs/aws-ssl-profiles"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/mysqljs/aws-ssl-profiles/issues"
  14. },
  15. "devDependencies": {
  16. "@biomejs/biome": "^1.8.3",
  17. "@types/node": "^22.5.1",
  18. "@types/x509.js": "^1.0.3",
  19. "poku": "^2.5.0",
  20. "prettier": "^3.3.3",
  21. "tsx": "^4.19.0",
  22. "typescript": "^5.5.4",
  23. "x509.js": "^1.0.0"
  24. },
  25. "files": [
  26. "lib"
  27. ],
  28. "engines": {
  29. "node": ">= 6.0.0"
  30. },
  31. "keywords": [
  32. "mysql",
  33. "mysql2",
  34. "pg",
  35. "postgres",
  36. "aws",
  37. "rds",
  38. "ssl",
  39. "certificates",
  40. "ca",
  41. "bundle"
  42. ],
  43. "scripts": {
  44. "build": "npx tsc",
  45. "postbuild": "cp src/index.d.ts lib/index.d.ts",
  46. "lint": "npx @biomejs/biome lint && prettier --check .",
  47. "lint:fix": "npx @biomejs/biome lint --write . && prettier --write .",
  48. "pretest": "npm run build",
  49. "test": "poku --parallel ./test",
  50. "test:ci": "npm run lint && npm run test"
  51. }
  52. }