mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 11:34:21 +01:00
22 lines
718 B
JSON
22 lines
718 B
JSON
{
|
|
"name": "turso-integration-tests",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "npm run test:turso && npm run test:serverless && npm run test:better-sqlite3",
|
|
"test:turso": "PROVIDER=turso ava __test__/*.test.js",
|
|
"test:serverless": "PROVIDER=serverless ava __test__/async.test.js",
|
|
"test:libsql": "PROVIDER=libsql ava __test__/*.test.js",
|
|
"test:better-sqlite3": "PROVIDER=better-sqlite3 ava __test__/sync.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^5.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@tursodatabase/serverless": "../../packages/turso-serverless",
|
|
"@tursodatabase/turso": "../../bindings/javascript",
|
|
"better-sqlite3": "^11.9.1",
|
|
"libsql": "^0.5.17"
|
|
}
|
|
}
|