forked from voxpelli/node-connect-pg-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"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": "[email protected]",
"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.11",
"@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.6",
"@types/node": "^18.19.14",
"@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": "^19.0.0",
"@voxpelli/tsconfig": "^10.0.0",
"c8": "^9.1.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"cookie-signature": "^1.2.1",
"cookiejar": "^2.1.4",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-plugin-es-x": "^7.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "^16.6.2",
"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": "^4.3.1",
"mocha": "^10.2.0",
"npm-run-all2": "^6.1.2",
"pg-promise": "^11.5.4",
"proxyquire": "^2.1.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.3.4",
"type-coverage": "^2.27.0",
"typescript": "~5.3.2",
"validate-conventional-commit": "^1.0.3"
}
}