package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.15.0",
  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": "4.1.0",
  17. "readable-stream": "2.3.6",
  18. "safe-buffer": "5.1.2",
  19. "sqlstring": "2.3.1"
  20. },
  21. "devDependencies": {
  22. "after": "0.8.2",
  23. "eslint": "4.19.1",
  24. "nyc": "10.3.2",
  25. "seedrandom": "2.4.3",
  26. "timezone-mock": "0.0.7",
  27. "urun": "0.0.8",
  28. "utest": "0.0.8"
  29. },
  30. "files": [
  31. "lib/",
  32. "Changes.md",
  33. "License",
  34. "Readme.md",
  35. "index.js"
  36. ],
  37. "engines": {
  38. "node": ">= 0.6"
  39. },
  40. "scripts": {
  41. "lint": "eslint .",
  42. "test": "node test/run.js",
  43. "test-ci": "nyc --reporter=text npm test",
  44. "test-cov": "nyc --reporter=html --reporter=text npm test",
  45. "version": "node tool/version-changes.js && git add Changes.md"
  46. }
  47. }