-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
858c891
commit dacf5f7
Showing
8 changed files
with
73,027 additions
and
64,168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"name": "sqlite3", | ||
"description": "Asynchronous, non-blocking SQLite3 bindings", | ||
"version": "5.1.6", | ||
"homepage": "https://github.com/TryGhost/node-sqlite3", | ||
"author": { | ||
"name": "Mapbox", | ||
"url": "https://mapbox.com/" | ||
}, | ||
"binary": { | ||
"module_name": "node_sqlite3", | ||
"module_path": "./lib/binding/napi-v{napi_build_version}-{platform}-{libc}-{arch}", | ||
"host": "https://github.com/TryGhost/node-sqlite3/releases/download/", | ||
"remote_path": "v{version}", | ||
"package_name": "napi-v{napi_build_version}-{platform}-{libc}-{arch}.tar.gz", | ||
"napi_versions": [ | ||
3, | ||
6 | ||
] | ||
}, | ||
"contributors": [ | ||
"Konstantin Käfer <[email protected]>", | ||
"Dane Springmeyer <[email protected]>", | ||
"Will White <[email protected]>", | ||
"Orlando Vazquez <[email protected]>", | ||
"Artem Kustikov <[email protected]>", | ||
"Eric Fredricksen <[email protected]>", | ||
"John Wright <[email protected]>", | ||
"Ryan Dahl <[email protected]>", | ||
"Tom MacWright <[email protected]>", | ||
"Carter Thaxton <[email protected]>", | ||
"Audrius Kažukauskas <[email protected]>", | ||
"Johannes Schauer <[email protected]>", | ||
"Nathan Rajlich <[email protected]>", | ||
"AJ ONeal <[email protected]>", | ||
"Mithgol", | ||
"Ben Noordhuis <[email protected]>" | ||
], | ||
"files": [ | ||
"binding.gyp", | ||
"deps/", | ||
"lib/*.js", | ||
"lib/*.d.ts", | ||
"src/" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/TryGhost/node-sqlite3.git" | ||
}, | ||
"dependencies": { | ||
"@mapbox/node-pre-gyp": "^1.0.0", | ||
"node-addon-api": "^4.2.0", | ||
"tar": "^6.1.11" | ||
}, | ||
"devDependencies": { | ||
"eslint": "6.8.0", | ||
"mocha": "7.2.0", | ||
"node-pre-gyp-github": "1.4.4" | ||
}, | ||
"peerDependencies": { | ||
"node-gyp": "8.x" | ||
}, | ||
"peerDependenciesMeta": { | ||
"node-gyp": { | ||
"optional": true | ||
} | ||
}, | ||
"optionalDependencies": { | ||
"node-gyp": "8.x" | ||
}, | ||
"scripts": { | ||
"build": "node-pre-gyp build", | ||
"build:debug": "node-pre-gyp build --debug", | ||
"install": "node-pre-gyp install --fallback-to-build", | ||
"pretest": "node test/support/createdb.js", | ||
"test": "mocha -R spec --timeout 480000", | ||
"pack": "node-pre-gyp package" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"keywords": [ | ||
"sql", | ||
"sqlite", | ||
"sqlite3", | ||
"database" | ||
], | ||
"main": "./lib/sqlite3", | ||
"types": "./lib/sqlite3.d.ts", | ||
"renovate": { | ||
"extends": [ | ||
"@tryghost:base" | ||
] | ||
} | ||
} |
Oops, something went wrong.