UNPKG

connect-cosmosdb

Version:
131 lines (130 loc) 3.33 kB
{ "name": "connect-cosmosdb", "version": "1.0.1", "description": "Cosmos DB based session store for express-session", "main": "./lib/index.js", "files": [ "lib/**/*" ], "scripts": { "build": "tsc --project tsconfig.build.json", "clean": "rm -rf ./lib/", "lint": "eslint ./src/ --fix", "prepare": "husky install", "semantic-release": "semantic-release", "test:watch": "jest --watch", "test": "jest --coverage", "typecheck": "tsc --noEmit", "fmt": "prettier --write .", "fmt-check": "prettier --check ." }, "repository": { "type": "git", "url": "https://github.com/thekillingspree/connect-cosmosdb.git" }, "license": "MIT", "author": { "name": "Ajesh Ds", "email": "iam@ajesh.dev", "url": "https://github.com/thekillingspree" }, "engines": { "node": ">=12.0" }, "keywords": [ "express", "sessions", "express-session", "nodejs session", "cosmos db", "cosmos db session store", "cosmos db session store for express" ], "bugs": { "url": "https://github.com/thekillingspree/connect-cosmosdb/issues" }, "homepage": "https://github.com/thekillingspree/connect-cosmosdb#readme", "devDependencies": { "@azure/cosmos": "^3.17.3", "@azure/identity": "^3.2.3", "@types/express-session": "^1.17.7", "@types/jest": "^27.5.2", "@types/node": "^12.20.11", "@types/uuid": "^9.0.2", "@typescript-eslint/eslint-plugin": "^4.22.0", "@typescript-eslint/parser": "^4.22.0", "conventional-changelog-conventionalcommits": "^6.1.0", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.3.1", "eslint": "^7.25.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^3.4.0", "husky": "^6.0.0", "jest": "^27.2.0", "lint-staged": "^13.2.1", "prettier": "^2.2.1", "semantic-release": "^21.0.7", "ts-jest": "^27.0.5", "ts-node": "^10.2.1", "typescript": "^4.2.4", "uuid": "^9.0.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "lint-staged": { "*.ts": "eslint --cache --cache-location .eslintcache --fix" }, "release": { "branches": [ "main" ], "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "conventionalcommits", "releaseRules": [ { "type": "build", "scope": "deps", "release": "patch" } ] } ], [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "feat", "section": "Features" }, { "type": "fix", "section": "Bug Fixes" }, { "type": "build", "section": "Dependencies and Other Build Updates", "hidden": false } ] } } ], "@semantic-release/npm", "@semantic-release/github" ] }, "peerDependencies": { "@azure/cosmos": ">=3", "express-session": ">=1" } }