Skip to content

Commit dacf5f7

Browse files
use node16, bump sqlite (#86)
1 parent 858c891 commit dacf5f7

8 files changed

Lines changed: 73027 additions & 64168 deletions

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ outputs:
3434
delta_bytes: # size of changed data
3535
description: The overall number of bytes changed in the output data this run (current size - previous size)
3636
runs:
37-
using: 'node12'
37+
using: 'node16'
3838
main: 'dist/index.js'
3939
post: 'dist/post/index.js'
4040
branding:

dist/LICENSE

Lines changed: 156 additions & 237 deletions
Large diffs are not rendered by default.

dist/index.js

Lines changed: 71345 additions & 62708 deletions
Large diffs are not rendered by default.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/package.json

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"name": "sqlite3",
3+
"description": "Asynchronous, non-blocking SQLite3 bindings",
4+
"version": "5.1.6",
5+
"homepage": "https://github.com/TryGhost/node-sqlite3",
6+
"author": {
7+
"name": "Mapbox",
8+
"url": "https://mapbox.com/"
9+
},
10+
"binary": {
11+
"module_name": "node_sqlite3",
12+
"module_path": "./lib/binding/napi-v{napi_build_version}-{platform}-{libc}-{arch}",
13+
"host": "https://github.com/TryGhost/node-sqlite3/releases/download/",
14+
"remote_path": "v{version}",
15+
"package_name": "napi-v{napi_build_version}-{platform}-{libc}-{arch}.tar.gz",
16+
"napi_versions": [
17+
3,
18+
6
19+
]
20+
},
21+
"contributors": [
22+
"Konstantin Käfer <mail@kkaefer.com>",
23+
"Dane Springmeyer <dane@mapbox.com>",
24+
"Will White <will@mapbox.com>",
25+
"Orlando Vazquez <ovazquez@gmail.com>",
26+
"Artem Kustikov <kustikoff@gmail.com>",
27+
"Eric Fredricksen <efredricksen@gmail.com>",
28+
"John Wright <mrjjwright@gmail.com>",
29+
"Ryan Dahl <ry@tinyclouds.org>",
30+
"Tom MacWright <tom@mapbox.com>",
31+
"Carter Thaxton <carter.thaxton@gmail.com>",
32+
"Audrius Kažukauskas <audrius@neutrino.lt>",
33+
"Johannes Schauer <josch@pyneo.org>",
34+
"Nathan Rajlich <nathan@tootallnate.net>",
35+
"AJ ONeal <coolaj86@gmail.com>",
36+
"Mithgol",
37+
"Ben Noordhuis <ben@strongloop.com>"
38+
],
39+
"files": [
40+
"binding.gyp",
41+
"deps/",
42+
"lib/*.js",
43+
"lib/*.d.ts",
44+
"src/"
45+
],
46+
"repository": {
47+
"type": "git",
48+
"url": "https://github.com/TryGhost/node-sqlite3.git"
49+
},
50+
"dependencies": {
51+
"@mapbox/node-pre-gyp": "^1.0.0",
52+
"node-addon-api": "^4.2.0",
53+
"tar": "^6.1.11"
54+
},
55+
"devDependencies": {
56+
"eslint": "6.8.0",
57+
"mocha": "7.2.0",
58+
"node-pre-gyp-github": "1.4.4"
59+
},
60+
"peerDependencies": {
61+
"node-gyp": "8.x"
62+
},
63+
"peerDependenciesMeta": {
64+
"node-gyp": {
65+
"optional": true
66+
}
67+
},
68+
"optionalDependencies": {
69+
"node-gyp": "8.x"
70+
},
71+
"scripts": {
72+
"build": "node-pre-gyp build",
73+
"build:debug": "node-pre-gyp build --debug",
74+
"install": "node-pre-gyp install --fallback-to-build",
75+
"pretest": "node test/support/createdb.js",
76+
"test": "mocha -R spec --timeout 480000",
77+
"pack": "node-pre-gyp package"
78+
},
79+
"license": "BSD-3-Clause",
80+
"keywords": [
81+
"sql",
82+
"sqlite",
83+
"sqlite3",
84+
"database"
85+
],
86+
"main": "./lib/sqlite3",
87+
"types": "./lib/sqlite3.d.ts",
88+
"renovate": {
89+
"extends": [
90+
"@tryghost:base"
91+
]
92+
}
93+
}

0 commit comments

Comments
 (0)