package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "better-sqlite3",
  3. "version": "8.5.1",
  4. "description": "The fastest and simplest library for SQLite3 in Node.js.",
  5. "homepage": "http://github.com/WiseLibs/better-sqlite3",
  6. "author": "Joshua Wise <joshuathomaswise@gmail.com>",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/WiseLibs/better-sqlite3.git"
  10. },
  11. "main": "lib/index.js",
  12. "files": [
  13. "binding.gyp",
  14. "src/*.[ch]pp",
  15. "lib/**",
  16. "deps/**"
  17. ],
  18. "dependencies": {
  19. "bindings": "^1.5.0",
  20. "prebuild-install": "^7.1.0"
  21. },
  22. "devDependencies": {
  23. "chai": "^4.3.6",
  24. "cli-color": "^2.0.2",
  25. "fs-extra": "^10.1.0",
  26. "mocha": "^10.2.0",
  27. "node-gyp": "8.4.1",
  28. "nodemark": "^0.3.0",
  29. "prebuild": "^11.0.4",
  30. "sqlite": "^4.1.1",
  31. "sqlite3": "^5.0.8"
  32. },
  33. "overrides": {
  34. "prebuild": {
  35. "node-gyp": "$node-gyp"
  36. }
  37. },
  38. "scripts": {
  39. "install": "prebuild-install || node-gyp rebuild --release",
  40. "build-release": "node-gyp rebuild --release",
  41. "build-debug": "node-gyp rebuild --debug",
  42. "rebuild-release": "npm run lzz && npm run build-release",
  43. "rebuild-debug": "npm run lzz && npm run build-debug",
  44. "test": "mocha --exit --slow=75 --timeout=5000",
  45. "benchmark": "node benchmark",
  46. "download": "bash ./deps/download.sh",
  47. "lzz": "lzz -hx hpp -sx cpp -k BETTER_SQLITE3 -d -hl -sl -e ./src/better_sqlite3.lzz"
  48. },
  49. "license": "MIT",
  50. "keywords": [
  51. "sql",
  52. "sqlite",
  53. "sqlite3",
  54. "transactions",
  55. "user-defined functions",
  56. "aggregate functions",
  57. "window functions",
  58. "database"
  59. ]
  60. }