-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
79 lines (79 loc) · 2.3 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
{
"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": "[email protected]",
"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"
}
}