@lepauloricardo/sequelize-simple-cache
Version:
A simple, transparent, client-side, in-memory cache for Sequelize (Fork de funny-bytes/sequelize-simple-cache)
62 lines (61 loc) • 2.13 kB
JSON
{
"name": "@lepauloricardo/sequelize-simple-cache",
"version": "0.0.3",
"description": "A simple, transparent, client-side, in-memory cache for Sequelize (Fork de funny-bytes/sequelize-simple-cache)",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": "Ricardo Pereira Ribeiro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lepauloricardo/sequelize-simple-cache",
"description": "Fork of funny-bytes/sequelize-simple-cache"
},
"keywords": [
"Sequelize",
"transparent",
"cache",
"client-side",
"in-memory"
],
"scripts": {
"test": "npm run test:unit && npm run test:integration:sqlite && npm run test:typescript",
"test:unit": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive --timeout 2000 test/unit/**/*.js",
"test:integration": "npm run test:integration:sqlite && npm run test:integration:postgres",
"test:integration:postgres": "mocha --exit --recursive --timeout 60000 test/integration/integration.postgres.spec.js",
"test:integration:sqlite": "mocha --exit --recursive --timeout 60000 test/integration/integration.sqlite.spec.js",
"test:typescript": "mocha -r ts-node/register test/typescript/**/*.spec.ts",
"coverage": "nyc report --reporter=lcovonly",
"preversion": "npm run test:unit && npm run test:integration && npm run test:typescript"
},
"engines": {
"node": ">=12.x.x"
},
"peerDependencies": {
"sequelize": ">=4.x.x"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.20",
"@types/validator": "^13.11.9",
"ansi-regex": ">=5.0.1",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"json-schema": ">=0.4.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"pg-promise": "^11.5.4",
"sequelize": "^6.37.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"sqlite3": "^5.1.7",
"tar": "^7.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"prettier": "3.3.3"
}
}