package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "better-sqlite3",
  3. "version": "9.6.0",
  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.1"
  21. },
  22. "devDependencies": {
  23. "chai": "^4.3.8",
  24. "cli-color": "^2.0.3",
  25. "fs-extra": "^11.1.1",
  26. "mocha": "^10.2.0",
  27. "nodemark": "^0.3.0",
  28. "prebuild": "^13.0.0",
  29. "sqlite": "^5.0.1",
  30. "sqlite3": "^5.1.6"
  31. },
  32. "scripts": {
  33. "install": "prebuild-install || node-gyp rebuild --release",
  34. "build-release": "node-gyp rebuild --release",
  35. "build-debug": "node-gyp rebuild --debug",
  36. "rebuild-release": "npm run lzz && npm run build-release",
  37. "rebuild-debug": "npm run lzz && npm run build-debug",
  38. "test": "mocha --exit --slow=75 --timeout=5000",
  39. "benchmark": "node benchmark",
  40. "download": "bash ./deps/download.sh",
  41. "lzz": "lzz -hx hpp -sx cpp -k BETTER_SQLITE3 -d -hl -sl -e ./src/better_sqlite3.lzz"
  42. },
  43. "license": "MIT",
  44. "keywords": [
  45. "sql",
  46. "sqlite",
  47. "sqlite3",
  48. "transactions",
  49. "user-defined functions",
  50. "aggregate functions",
  51. "window functions",
  52. "database"
  53. ]
  54. }