UNPKG

dexie-batch

Version:

Fetch DB entries in batches to improve performance while respecting IPC size constraints

62 lines (61 loc) 1.51 kB
{ "name": "dexie-batch", "version": "0.4.3", "description": "Fetch DB entries in batches to improve performance while respecting IPC size constraints", "license": "MIT", "author": "Raphael von der Grün", "main": "dist/dexie-batch.js", "module": "dist/dexie-batch.mjs", "repository": "raphinesse/dexie-batch", "scripts": { "prebuild": "npm test", "build": "rollup -c", "postbuild": "TEST_SUBJECT=dist/dexie-batch.js ava", "format": "prettier --ignore-path .gitignore --write '**/*.js'", "prepack": "npm run build", "test": "xo && nyc ava" }, "xo": { "space": 2, "prettier": true, "rules": { "import/no-anonymous-default-export": "off", "unicorn/no-array-for-each": "off", "unicorn/prevent-abbreviations": "off" } }, "prettier": { "arrowParens": "avoid", "bracketSpacing": true, "semi": false, "singleQuote": true, "trailingComma": "es5" }, "files": [ "dist" ], "devDependencies": { "@babel/core": "^7.4.0", "@babel/preset-env": "^7.4.2", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^17.1.0", "@rollup/plugin-node-resolve": "^11.2.0", "ava": "^3.15.0", "dexie": "^3.0.3", "fake-indexeddb": "^3.1.2", "nyc": "^15.1.0", "rollup": "^2.40.0", "rollup-plugin-terser": "^7.0.2", "xo": "^0.38.2" }, "peerDependencies": { "dexie": ">1.3.6" }, "keywords": [ "batch", "bulk", "dexie", "fetch", "get" ] }