package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "_from": "mysql2",
  3. "_id": "mysql2@2.1.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-9kGVyi930rG2KaHrz3sHwtc6K+GY9d8wWk1XRSYxQiunvGcn4DwuZxOwmK11ftuhhwrYDwGx9Ta4VBwznJn36A==",
  6. "_location": "/mysql2",
  7. "_phantomChildren": {
  8. "safer-buffer": "2.1.2"
  9. },
  10. "_requested": {
  11. "type": "tag",
  12. "registry": true,
  13. "raw": "mysql2",
  14. "name": "mysql2",
  15. "escapedName": "mysql2",
  16. "rawSpec": "",
  17. "saveSpec": null,
  18. "fetchSpec": "latest"
  19. },
  20. "_requiredBy": [
  21. "#USER",
  22. "/"
  23. ],
  24. "_resolved": "https://registry.npmjs.org/mysql2/-/mysql2-2.1.0.tgz",
  25. "_shasum": "55ecfd4353114c148cc4c253192dbbfd000e6642",
  26. "_spec": "mysql2",
  27. "_where": "E:\\a-level\\project_js2",
  28. "author": {
  29. "name": "Andrey Sidorov",
  30. "email": "sidorares@yandex.ru"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/sidorares/node-mysql2/issues"
  34. },
  35. "bundleDependencies": false,
  36. "dependencies": {
  37. "cardinal": "^2.1.1",
  38. "denque": "^1.4.1",
  39. "generate-function": "^2.3.1",
  40. "iconv-lite": "^0.5.0",
  41. "long": "^4.0.0",
  42. "lru-cache": "^5.1.1",
  43. "named-placeholders": "^1.1.2",
  44. "seq-queue": "^0.0.5",
  45. "sqlstring": "^2.3.1"
  46. },
  47. "deprecated": false,
  48. "description": "fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS",
  49. "devDependencies": {
  50. "assert-diff": "^2.0.2",
  51. "error-stack-parser": "^2.0.3",
  52. "eslint": "^6.2.2",
  53. "eslint-config-prettier": "^6.1.0",
  54. "eslint-plugin-async-await": "0.0.0",
  55. "eslint-plugin-markdown": "^1.0.0",
  56. "husky": "^3.0.4",
  57. "is-async-supported": "^1.2.0",
  58. "lint-staged": "^9.2.5",
  59. "portfinder": "^1.0.23",
  60. "prettier": "^1.18.2",
  61. "prettier-markdown": "^0.1.6",
  62. "progress": "^2.0.3",
  63. "urun": "0.0.8",
  64. "utest": "0.0.8"
  65. },
  66. "directories": {
  67. "example": "examples"
  68. },
  69. "engines": {
  70. "node": ">= 8.0"
  71. },
  72. "files": [
  73. "lib",
  74. "index.js",
  75. "promise.js"
  76. ],
  77. "homepage": "https://github.com/sidorares/node-mysql2#readme",
  78. "keywords": [
  79. "mysql",
  80. "client",
  81. "server"
  82. ],
  83. "license": "MIT",
  84. "lint-staged": {
  85. "*.js": [
  86. "prettier --single-quote --trailing-comma none --write",
  87. "git add"
  88. ]
  89. },
  90. "main": "index.js",
  91. "name": "mysql2",
  92. "repository": {
  93. "type": "git",
  94. "url": "git+https://github.com/sidorares/node-mysql2.git"
  95. },
  96. "scripts": {
  97. "benchmark": "./benchmarks/run-unit.js",
  98. "eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
  99. "lint": "npm run lint:docs && npm run lint:code",
  100. "lint:code": "eslint index.js promise.js \"lib/**/*.js\" \"test/**/*.js\" \"benchmarks/**/*.js\"",
  101. "lint:docs": "eslint Contributing.md \"documentation/**/*.md\" \"examples/*.js\"",
  102. "precommit": "lint-staged",
  103. "prettier": "prettier --single-quote --trailing-comma none --write \"{lib,examples,test}/**/*.js\"",
  104. "prettier:docs": "prettier-markdown README.md documentation/*",
  105. "test": "npm run lint && npm run test:raw",
  106. "test:raw": "node ./test/run.js",
  107. "wait-port": "wait-on"
  108. },
  109. "version": "2.1.0"
  110. }