cf-workers-kv
Version:
Cloudflare workers KV with customizable backing store for testing.
42 lines (41 loc) • 1.11 kB
JSON
{
"name": "cf-workers-kv",
"version": "0.0.0",
"description": "Cloudflare workers KV with customizable backing store for testing.",
"main": "dist/KV.js",
"type": "module",
"types": "dist/KV.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"test": "npm run test:build && npm run test:ava",
"test:build": "tsc --project tsconfig.test.json",
"test:ava": "ava --verbose 'dist/**/*.spec.js'",
"coverage": "c8 npm test && c8 report --reporter lcov --reporter html"
},
"files": [
"dist"
],
"keywords": [
"cloudflare",
"kv",
"store",
"map"
],
"author": "Alan Shaw",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.1",
"async-map-like": "^0.2.5",
"ava": "^3.15.0",
"c8": "^7.7.1",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanshaw/cf-workers-memkv.git"
},
"bugs": {
"url": "https://github.com/alanshaw/cf-workers-memkv/issues"
},
"homepage": "https://github.com/alanshaw/cf-workers-memkv#readme"
}