UNPKG

@curveball/session

Version:

Session storage using HTTP cookies

98 lines (97 loc) 1.99 kB
{ "name": "@curveball/session", "version": "1.0.1", "description": "Session storage using HTTP cookies", "type": "module", "exports": "./dist/index.js", "homepage": "https://github.com/curveball/session#readme", "bugs": { "url": "https://github.com/curveball/session/issues" }, "keywords": [ "http", "framework", "nodejs", "typescript", "curveball", "session", "cookies", "cookie" ], "author": "Evert Pot (https://evertpot.com/)", "license": "MIT", "scripts": { "prepublishOnly": "make build", "test": "make test", "lint": "make lint", "fix": "make fix", "tsc": "tsc", "start": "make start", "build": "make build" }, "repository": { "type": "git", "url": "git+https://github.com/curveball/session.git" }, "dependencies": { "cookie": "^1.0.1" }, "peerDependencies": { "@curveball/kernel": "^1" }, "devDependencies": { "@curveball/bodyparser": "^1.0.0", "@curveball/kernel": "^1.0.0", "@curveball/problem": "^1.0.0", "@types/chai": "^4.2.15", "@types/mocha": "^10.0.1", "@types/node": "^18.19.8", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "chai": "^5.0.0", "eslint": "^8.23.0", "mocha": "^10.2.0", "nyc": "^15.1.0", "ts-node": "^10.9.1", "typescript": "^5.3.3" }, "engines": { "node": ">= 18" }, "files": [ "package.json", "README.md", "dist", "LICENSE", "src" ], "mocha": { "loader": [ "ts-node/esm" ], "recursive": true, "extension": [ "ts", "js", "tsx" ], "exit": true }, "nyc": { "extension": [ ".ts" ] }, "contributors": [ { "name": "Evert Pot", "email": "me@evertpot.com", "url": "https://evertpot.com" }, { "name": "Ju-Hang Sin", "email": "ju@badgateway.net", "url": "https://juhangsin.net" } ] }