UNPKG

express-session-etcd3

Version:

An ETCD v3 store adapter for express-session using etcd3 client.

130 lines (129 loc) 3.65 kB
{ "name": "express-session-etcd3", "version": "1.2.4", "description": "An ETCD v3 store adapter for express-session using etcd3 client.", "keywords": [ "etcd", "etcd3", "express", "session", "adapter" ], "main": "dist/express-session-etcd3.js", "module": "dist/express-session-etcd3.es5.js", "typings": "dist/types/express-session-etcd3.d.ts", "files": [ "dist" ], "author": "Jexia <community@jexia.com>", "contributors": [ { "name": "William Grasel", "email": "d.ru.fo.s+github@gmail.com", "url": "https://twitter.com/willgmbr" } ], "repository": { "type": "git", "url": "https://github.com/jexia/express-session-etcd3.git" }, "license": "MIT", "engines": { "node": ">=6.0.0" }, "scripts": { "lint": "tslint -t codeFrame -p .", "prebuild": "rimraf dist", "build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src", "start": "rollup -c rollup.config.ts -w", "test": "jest", "test:watch": "jest --watch", "test:ci": "npm run test -- --coverage --no-cache --ci --forceExit --testResultsProcessor=\"jest-junit\"", "deploy-docs": "ts-node tools/gh-pages-publish", "commit": "git-cz", "semantic-release": "semantic-release", "precommit": "lint-staged", "docker": "docker build -t etcd . && docker run -d -p 2379:2379 -p 2380:2380 etcd", "prepush": "npm run test:ci && npm run build", "commitmsg": "validate-commit-msg" }, "lint-staged": { "{src,test}/**/*.ts": [ "prettier --write --no-semi --single-quote", "git add" ] }, "config": { "commitizen": { "path": "node_modules/cz-conventional-changelog" }, "validate-commit-msg": { "types": "conventional-commit-types", "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)" } }, "jest": { "transform": { ".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", "moduleFileExtensions": [ "ts", "js" ], "collectCoverageFrom": [ "src/**/*.ts" ], "coverageThreshold": { "global": { "branches": 90, "functions": 95, "lines": 95, "statements": 95 } }, "collectCoverage": true }, "peerDependencies": { "express-session": "^1.15.6", "etcd3": "^0.2.10" }, "devDependencies": { "@types/debug": "0.0.30", "@types/express-session": "^1.15.8", "@types/jest": "^22.2.3", "@types/node": "^10.0.1", "colors": "^1.2.1", "commitizen": "^2.9.6", "cross-env": "^5.1.4", "cz-conventional-changelog": "^2.1.0", "etcd3": "^0.2.10", "express-session": "^1.15.6", "husky": "^0.14.3", "jest": "^22.4.3", "jest-junit": "^3.7.0", "lint-staged": "^7.0.5", "lodash.camelcase": "^4.3.0", "prettier": "^1.12.1", "prompt": "^1.0.0", "replace-in-file": "^3.4.0", "rimraf": "^2.6.2", "rollup": "^0.58.2", "rollup-plugin-commonjs": "^9.1.2", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-sourcemaps": "^0.4.2", "rollup-plugin-typescript2": "^0.13.0", "semantic-release": "^15.1.8", "ts-jest": "^22.4.4", "ts-node": "^6.0.2", "tslint": "^5.9.1", "tslint-config-prettier": "^1.12.0", "tslint-config-standard": "^7.0.0", "typedoc": "^0.11.1", "typescript": "^2.8.3", "validate-commit-msg": "^2.14.0" }, "dependencies": { "debug": "^3.1.0" } }