UNPKG

express-sqlite3

Version:
68 lines (67 loc) 1.57 kB
{ "name": "express-sqlite3", "version": "0.0.5", "description": "SQLite3 session store for express-session", "main": "lib/express-sqlite3", "scripts": { "lint": "eslint --ignore-path .gitignore lib/** tests/**.js", "lint:fix": "eslint --fix --ignore-path .gitignore lib/** tests/**.js", "test": "jest", "test:coverage": "jest --coverage" }, "repository": { "type": "git", "url": "git+https://github.com/RomanBurunkov/express-sqlite3.git" }, "keywords": [ "Express", "Session", "Store", "Sqlite", "Sqlite3" ], "author": "Roman Burunkov <romon2002@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/RomanBurunkov/express-sqlite3/issues" }, "homepage": "https://github.com/RomanBurunkov/express-sqlite3#readme", "devDependencies": { "eslint": "^8.57.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.31.0", "express-session": "^1.18.1", "jest": "^27.5.1" }, "eslintConfig": { "env": { "node": true, "jest": true }, "parserOptions": { "ecmaFeatures": { "legacyDecorators": true } }, "extends": [ "airbnb-base" ], "rules": { "import/prefer-default-export": "off" } }, "jest": { "verbose": true, "moduleFileExtensions": [ "js", "json" ], "testRegex": ".spec.js$", "coverageDirectory": "./coverage", "collectCoverageFrom": ["./lib/*.js"] }, "dependencies": { "sqlite3": "^5.1.7", "tm-is": "^0.3.0" } }