2026-02-01 13:01:28 +00:00

80 lines
2.3 KiB
JSON

{
"name": "connect-pg-simple",
"version": "10.0.0",
"description": "A simple, minimal PostgreSQL session store for Connect/Express",
"url": "http://github.com/voxpelli/node-connect-pg-simple",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-connect-pg-simple.git"
},
"author": {
"name": "Pelle Wessman",
"email": "pelle@kodfabrik.se",
"url": "http://kodfabrik.se/"
},
"license": "MIT",
"dependencies": {
"pg": "^8.12.0"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=22.0.0"
},
"main": "index.js",
"files": [
"index.js",
"table.sql"
],
"scripts": {
"check:installed-check": "installed-check",
"check:knip": "knip",
"check:lint": "eslint",
"check:tsc": "tsc",
"check:type-coverage": "type-coverage --detail --strict --at-least 85 --ignore-files 'test/**/*'",
"check": "run-p check:*",
"light:mocha": "c8 --reporter=lcov --reporter text mocha test/*.spec.js",
"prepare": "husky install",
"test-light": "run-s check light:*",
"test:mocha": "c8 --reporter=lcov --reporter text mocha 'test/**/*.spec.js' --exit",
"test-ci": "run-s test:*",
"test": "run-s check test:*"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^7.1.8",
"@types/cookie-signature": "^1.1.2",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/mocha": "^10.0.8",
"@types/node": "^18.19.50",
"@types/pg": "^8.11.0",
"@types/proxyquire": "^1.3.31",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/supertest": "^6.0.2",
"@voxpelli/eslint-config": "^21.0.0",
"@voxpelli/tsconfig": "^14.0.0",
"c8": "^10.1.2",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"cookie-signature": "^1.2.1",
"cookiejar": "^2.1.4",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"express": "^4.21.0",
"express-session": "^1.18.0",
"husky": "^9.1.6",
"installed-check": "^9.3.0",
"knip": "^5.30.2",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.2",
"pg-promise": "^11.9.1",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.4",
"type-coverage": "^2.29.1",
"typescript": "~5.5.4",
"validate-conventional-commit": "^1.0.4"
}
}