89 lines
2.7 KiB
JSON
89 lines
2.7 KiB
JSON
|
|
{
|
||
|
|
"name": "connect-pg-simple",
|
||
|
|
"version": "9.0.1",
|
||
|
|
"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.8.0"
|
||
|
|
},
|
||
|
|
"engines": {
|
||
|
|
"node": ">=16.0.0"
|
||
|
|
},
|
||
|
|
"main": "index.js",
|
||
|
|
"files": [
|
||
|
|
"index.js",
|
||
|
|
"table.sql"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"check:installed-check": "installed-check -i eslint-plugin-jsdoc -i knip -i installed-check",
|
||
|
|
"check:knip": "knip",
|
||
|
|
"check:lint": "eslint --report-unused-disable-directives .",
|
||
|
|
"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.9",
|
||
|
|
"@types/chai-as-promised": "^7.1.7",
|
||
|
|
"@types/cookie-signature": "^1.1.1",
|
||
|
|
"@types/express": "^4.17.20",
|
||
|
|
"@types/express-session": "^1.17.9",
|
||
|
|
"@types/mocha": "^10.0.3",
|
||
|
|
"@types/node": "^16.18.60",
|
||
|
|
"@types/pg": "^8.10.7",
|
||
|
|
"@types/proxyquire": "^1.3.30",
|
||
|
|
"@types/sinon": "^10.0.20",
|
||
|
|
"@types/sinon-chai": "^3.2.11",
|
||
|
|
"@types/supertest": "^2.0.15",
|
||
|
|
"@voxpelli/eslint-config": "^19.0.0",
|
||
|
|
"@voxpelli/tsconfig": "^9.0.0",
|
||
|
|
"c8": "^8.0.1",
|
||
|
|
"chai": "^4.3.10",
|
||
|
|
"chai-as-promised": "^7.1.1",
|
||
|
|
"cookie-signature": "^1.2.1",
|
||
|
|
"cookiejar": "^2.1.4",
|
||
|
|
"dotenv": "^16.3.1",
|
||
|
|
"eslint": "^8.52.0",
|
||
|
|
"eslint-plugin-es-x": "^7.2.0",
|
||
|
|
"eslint-plugin-import": "^2.29.0",
|
||
|
|
"eslint-plugin-jsdoc": "^46.8.2",
|
||
|
|
"eslint-plugin-mocha": "^10.2.0",
|
||
|
|
"eslint-plugin-n": "^16.2.0",
|
||
|
|
"eslint-plugin-promise": "^6.1.1",
|
||
|
|
"eslint-plugin-security": "^1.7.1",
|
||
|
|
"eslint-plugin-sort-destructure-keys": "^1.5.0",
|
||
|
|
"eslint-plugin-unicorn": "^48.0.1",
|
||
|
|
"express": "^4.18.2",
|
||
|
|
"express-session": "^1.17.3",
|
||
|
|
"husky": "^8.0.3",
|
||
|
|
"installed-check": "^8.0.1",
|
||
|
|
"knip": "^2.38.5",
|
||
|
|
"mocha": "^10.2.0",
|
||
|
|
"npm-run-all2": "^6.1.1",
|
||
|
|
"pg-promise": "^11.5.4",
|
||
|
|
"proxyquire": "^2.1.3",
|
||
|
|
"sinon": "^17.0.1",
|
||
|
|
"sinon-chai": "^3.7.0",
|
||
|
|
"supertest": "^6.3.3",
|
||
|
|
"type-coverage": "^2.27.0",
|
||
|
|
"typescript": "~5.2.2",
|
||
|
|
"validate-conventional-commit": "^1.0.2"
|
||
|
|
}
|
||
|
|
}
|