{ "name": "@medusajs/locking-redis", "version": "2.12.3", "description": "Redis Lock for Medusa", "main": "dist/index.js", "repository": { "type": "git", "url": "https://github.com/medusajs/medusa", "directory": "packages/modules/providers/locking-redis" }, "files": [ "dist", "!dist/**/__tests__", "!dist/**/__mocks__", "!dist/**/__fixtures__" ], "engines": { "node": ">=20" }, "author": "Medusa", "license": "MIT", "devDependencies": { "@medusajs/framework": "2.12.3" }, "peerDependencies": { "@medusajs/framework": "2.12.3" }, "dependencies": { "ioredis": "^5.4.1" }, "scripts": { "watch": "yarn run -T tsc --build --watch", "watch:test": "yarn run -T tsc --build tsconfig.spec.json --watch", "resolve:aliases": "yarn run -T tsc --showConfig -p tsconfig.json > tsconfig.resolved.json && yarn run -T tsc-alias -p tsconfig.resolved.json && yarn run -T rimraf tsconfig.resolved.json", "build": "yarn run -T rimraf dist && yarn run -T tsc --build && npm run resolve:aliases", "test": "../../../../node_modules/.bin/jest --passWithNoTests src", "test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"" }, "keywords": [ "medusa-providers", "medusa-providers-locking" ] }