package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "sqlstring",
  3. "description": "Simple SQL escape and format for MySQL",
  4. "version": "2.3.1",
  5. "contributors": [
  6. "Adri Van Houdt <adri.van.houdt@gmail.com>",
  7. "Douglas Christopher Wilson <doug@somethingdoug.com>",
  8. "fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)",
  9. "Kevin Jose Martin <kevin@tiliq.com>",
  10. "Nathan Woltman <nwoltman@outlook.com>",
  11. "Sergej Sintschilin <seregpie@gmail.com>"
  12. ],
  13. "license": "MIT",
  14. "keywords": [
  15. "sqlstring",
  16. "sql",
  17. "escape",
  18. "sql escape"
  19. ],
  20. "repository": "mysqljs/sqlstring",
  21. "devDependencies": {
  22. "beautify-benchmark": "0.2.4",
  23. "benchmark": "2.1.4",
  24. "eslint": "4.18.1",
  25. "eslint-plugin-markdown": "1.0.0-beta.6",
  26. "nyc": "10.3.2",
  27. "urun": "0.0.8",
  28. "utest": "0.0.8"
  29. },
  30. "files": [
  31. "lib/",
  32. "HISTORY.md",
  33. "LICENSE",
  34. "README.md",
  35. "index.js"
  36. ],
  37. "engines": {
  38. "node": ">= 0.6"
  39. },
  40. "scripts": {
  41. "bench": "node benchmark/index.js",
  42. "lint": "eslint --plugin markdown --ext js,md .",
  43. "test": "node test/run.js",
  44. "test-ci": "nyc --reporter=text npm test",
  45. "test-cov": "nyc --reporter=html --reporter=text npm test"
  46. }
  47. }