package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "mysql2",
  3. "version": "3.15.0",
  4. "description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",
  5. "main": "index.js",
  6. "typings": "typings/mysql/index",
  7. "type": "commonjs",
  8. "scripts": {
  9. "lint": "eslint . && prettier --check .",
  10. "lint:fix": "eslint . --fix && prettier --write .",
  11. "test": "poku -d -r=verbose --sequential test/esm test/unit test/integration",
  12. "test:bun": "bun poku -d --sequential test/esm test/unit test/integration",
  13. "test:deno": "deno run --allow-read --allow-env --allow-run npm:poku -d --sequential --denoAllow=\"read,env,net,sys\" test/esm test/unit test/integration",
  14. "test:tsc-build": "cd \"test/tsc-build\" && npx tsc -p \"tsconfig.json\"",
  15. "coverage-test": "c8 npm run test",
  16. "benchmark": "node ./benchmarks/benchmark.js",
  17. "wait-port": "wait-on"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/sidorares/node-mysql2.git"
  22. },
  23. "homepage": "https://sidorares.github.io/node-mysql2/docs",
  24. "keywords": [
  25. "mysql",
  26. "client",
  27. "server"
  28. ],
  29. "files": [
  30. "lib",
  31. "typings/mysql",
  32. "index.js",
  33. "index.d.ts",
  34. "promise.js",
  35. "promise.d.ts"
  36. ],
  37. "exports": {
  38. ".": "./index.js",
  39. "./package.json": "./package.json",
  40. "./promise": "./promise.js",
  41. "./promise.js": "./promise.js"
  42. },
  43. "engines": {
  44. "node": ">= 8.0"
  45. },
  46. "author": "Andrey Sidorov <andrey.sidorov@gmail.com>",
  47. "license": "MIT",
  48. "dependencies": {
  49. "aws-ssl-profiles": "^1.1.1",
  50. "denque": "^2.1.0",
  51. "generate-function": "^2.3.1",
  52. "iconv-lite": "^0.7.0",
  53. "long": "^5.2.1",
  54. "lru.min": "^1.0.0",
  55. "named-placeholders": "^1.1.3",
  56. "seq-queue": "^0.0.5",
  57. "sqlstring": "^2.3.2"
  58. },
  59. "devDependencies": {
  60. "@eslint/eslintrc": "^3.3.0",
  61. "@eslint/js": "^9.21.0",
  62. "@eslint/markdown": "^7.0.0",
  63. "@types/node": "^24.0.0",
  64. "@typescript-eslint/eslint-plugin": "^8.26.0",
  65. "@typescript-eslint/parser": "^8.26.0",
  66. "assert-diff": "^3.0.2",
  67. "benchmark": "^2.1.4",
  68. "c8": "^10.1.1",
  69. "error-stack-parser": "^2.0.3",
  70. "eslint-config-prettier": "^10.0.2",
  71. "eslint-plugin-async-await": "^0.0.0",
  72. "eslint-plugin-markdown": "^5.1.0",
  73. "eslint-plugin-prettier": "^5.2.3",
  74. "globals": "^16.0.0",
  75. "poku": "^3.0.0",
  76. "portfinder": "^1.0.28",
  77. "prettier": "^3.0.0",
  78. "typescript": "^5.0.2"
  79. }
  80. }