UNPKG

@keyv/test-suite

Version:

Test suite for Keyv API compliancy

77 lines 2.07 kB
{ "name": "@keyv/test-suite", "version": "2.1.1", "description": "Test suite for Keyv API compliancy", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js" } }, "type": "module", "xo": { "rules": { "import/no-named-as-default": "off", "unicorn/prefer-module": "off", "n/file-extension-in-import": "off", "unicorn/prefer-node-protocol": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-confusing-void-expression": "off", "@typescript-eslint/no-unsafe-argument": "off", "import/extensions": "off", "import/no-extraneous-dependencies": "off", "no-promise-executor-return": "off", "@typescript-eslint/use-unknown-in-catch-callback-variable": "off" } }, "repository": { "type": "git", "url": "git+https://github.com/jaredwray/keyv.git" }, "files": [ "dist", "LICENSE" ], "keywords": [ "test", "suite", "tests", "key", "value", "store", "cache", "ttl" ], "author": "Jared Wray <me@jaredwray.com> (http://jaredwray.com)", "license": "MIT", "bugs": { "url": "https://github.com/jaredwray/keyv/issues" }, "homepage": "https://github.com/jaredwray/keyv", "dependencies": { "@vitest/coverage-v8": "^3.2.4", "bignumber.js": "^9.3.1", "json-bigint": "^1.0.0", "sqlite3": "^5.1.7", "timekeeper": "^2.3.1", "vitest": "^3.2.4" }, "peerDependencies": { "keyv": "^5.5.0" }, "devDependencies": { "@types/json-bigint": "^1.0.4", "rimraf": "^6.0.1", "lz4-napi": "^2.9.0", "@keyv/serialize": "^1.1.0" }, "scripts": { "build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean", "test": "xo --fix && vitest run --coverage", "test:ci": "xo && vitest --run --sequence.setupFiles=list --coverage", "clean": "rimraf ./node_modules ./coverage ./dist ./test/testdb.sqlite" } }