package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "sqlite3",
  3. "description": "Asynchronous, non-blocking SQLite3 bindings",
  4. "version": "5.1.7",
  5. "homepage": "https://github.com/TryGhost/node-sqlite3",
  6. "author": {
  7. "name": "Mapbox",
  8. "url": "https://mapbox.com/"
  9. },
  10. "binary": {
  11. "napi_versions": [
  12. 3,
  13. 6
  14. ]
  15. },
  16. "contributors": [
  17. "Daniel Lockyer <hi@daniellockyer.com>",
  18. "Konstantin Käfer <mail@kkaefer.com>",
  19. "Dane Springmeyer <dane@mapbox.com>",
  20. "Will White <will@mapbox.com>",
  21. "Orlando Vazquez <ovazquez@gmail.com>",
  22. "Artem Kustikov <kustikoff@gmail.com>",
  23. "Eric Fredricksen <efredricksen@gmail.com>",
  24. "John Wright <mrjjwright@gmail.com>",
  25. "Ryan Dahl <ry@tinyclouds.org>",
  26. "Tom MacWright <tom@mapbox.com>",
  27. "Carter Thaxton <carter.thaxton@gmail.com>",
  28. "Audrius Kažukauskas <audrius@neutrino.lt>",
  29. "Johannes Schauer <josch@pyneo.org>",
  30. "Nathan Rajlich <nathan@tootallnate.net>",
  31. "AJ ONeal <coolaj86@gmail.com>",
  32. "Mithgol",
  33. "Ben Noordhuis <ben@strongloop.com>"
  34. ],
  35. "files": [
  36. "binding.gyp",
  37. "deps/",
  38. "lib/*.js",
  39. "lib/*.d.ts",
  40. "src/"
  41. ],
  42. "repository": {
  43. "type": "git",
  44. "url": "https://github.com/TryGhost/node-sqlite3.git"
  45. },
  46. "dependencies": {
  47. "bindings": "^1.5.0",
  48. "node-addon-api": "^7.0.0",
  49. "prebuild-install": "^7.1.1",
  50. "tar": "^6.1.11"
  51. },
  52. "devDependencies": {
  53. "eslint": "8.56.0",
  54. "mocha": "10.2.0",
  55. "prebuild": "12.1.0"
  56. },
  57. "peerDependencies": {
  58. "node-gyp": "8.x"
  59. },
  60. "peerDependenciesMeta": {
  61. "node-gyp": {
  62. "optional": true
  63. }
  64. },
  65. "optionalDependencies": {
  66. "node-gyp": "8.x"
  67. },
  68. "scripts": {
  69. "install": "prebuild-install -r napi || node-gyp rebuild",
  70. "prebuild": "prebuild --runtime napi --all --verbose",
  71. "rebuild": "node-gyp rebuild",
  72. "upload": "prebuild --verbose --prerelease",
  73. "test": "node test/support/createdb.js && mocha -R spec --timeout 480000"
  74. },
  75. "license": "BSD-3-Clause",
  76. "keywords": [
  77. "sql",
  78. "sqlite",
  79. "sqlite3",
  80. "database"
  81. ],
  82. "main": "./lib/sqlite3",
  83. "types": "./lib/sqlite3.d.ts",
  84. "renovate": {
  85. "extends": [
  86. "@tryghost:base"
  87. ]
  88. }
  89. }