Comparing version 0.5.0 to 0.6.0
{ | ||
"name": "keyv", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"description": "Simple key/value store with support for multiple backends", | ||
@@ -40,2 +40,3 @@ "main": "src/index.js", | ||
"keyv-mongo": "*", | ||
"keyv-postgres": "^0.1.0", | ||
"keyv-redis": "*", | ||
@@ -42,0 +43,0 @@ "keyv-sqlite": "*", |
@@ -11,3 +11,5 @@ 'use strict'; | ||
mongo: 'keyv-mongo', | ||
sqlite: 'keyv-sqlite' | ||
sqlite: 'keyv-sqlite', | ||
postgresql: 'keyv-postgres', | ||
postgres: 'keyv-postgres' | ||
}; | ||
@@ -14,0 +16,0 @@ if (opts.adapter || opts.uri) { |
@@ -6,5 +6,5 @@ import test from 'ava'; | ||
keyvOfficialTests(test, Keyv, 'sqlite://:memory:', 'sqlite://non/existent/database.sqlite'); | ||
keyvOfficialTests(test, Keyv, 'sqlite://test/testdb.sqlite', 'sqlite://non/existent/database.sqlite'); | ||
const store = () => new KeyvSqlite('sqlite://:memory:'); | ||
const store = () => new KeyvSqlite('sqlite://test/testdb.sqlite'); | ||
keyvTestSuite(test, Keyv, store); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9865
11
167
12