package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "mysql",
  3. "description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
  4. "version": "2.18.1",
  5. "license": "MIT",
  6. "author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
  7. "contributors": [
  8. "Andrey Sidorov <sidorares@yandex.ru>",
  9. "Bradley Grainger <bgrainger@gmail.com>",
  10. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  11. "Diogo Resende <dresende@thinkdigital.pt>",
  12. "Nathan Woltman <nwoltman@outlook.com>"
  13. ],
  14. "repository": "mysqljs/mysql",
  15. "dependencies": {
  16. "bignumber.js": "9.0.0",
  17. "readable-stream": "2.3.7",
  18. "safe-buffer": "5.1.2",
  19. "sqlstring": "2.3.1"
  20. },
  21. "devDependencies": {
  22. "after": "0.8.2",
  23. "eslint": "5.16.0",
  24. "seedrandom": "3.0.5",
  25. "timezone-mock": "0.0.7",
  26. "urun": "0.0.8",
  27. "utest": "0.0.8"
  28. },
  29. "files": [
  30. "lib/",
  31. "Changes.md",
  32. "License",
  33. "Readme.md",
  34. "index.js"
  35. ],
  36. "engines": {
  37. "node": ">= 0.6"
  38. },
  39. "scripts": {
  40. "lint": "eslint . && node tool/lint-readme.js",
  41. "test": "node test/run.js",
  42. "test-ci": "node tool/install-nyc.js --nyc-optional --reporter=text -- npm test",
  43. "test-cov": "node tool/install-nyc.js --reporter=html --reporter=text -- npm test",
  44. "version": "node tool/version-changes.js && git add Changes.md"
  45. }
  46. }