-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
{
"name": "connect-typeorm",
"description": "A TypeORM-based session store",
"version": "2.0.0",
"main": "out",
"typings": "out",
"repository": {
"type": "git",
"url": "git+https://github.com/freshgiammi-lab/connect-typeorm.git"
},
"author": "makepost",
"contributors": [
"freshgiammi <rengucci.gianmarco@gmail.com>",
"Nathan Phillip Brink <ohnobinki@ohnopublishing.net>"
],
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"lint:strict": "eslint --max-warnings=0 'src/**/*.ts'",
"prettify": "prettier -w .",
"prettify:check": "prettier -c .",
"pre-commit": "lint-staged",
"commit": "commit",
"format": "tsc && npm run lint:fix && ava",
"test": "tsc && nyc ava && nyc report --reporter=html && npm run lint",
"test:extended": "tsc && tav typeorm '^0.3.0' ava && npm i && npm test"
},
"dependencies": {
"@types/debug": "4.1.7",
"@types/express-session": "^1.17.5",
"debug": "^4.3.4",
"express-session": "^1.17.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"ava": "^4.3.1",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"express": "^4.18.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nullthrows": "^1.1.1",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"sqlite3": "^5.0.10",
"supertest": "^6.2.4",
"test-all-versions": "^5.0.1",
"typeorm": "^0.3.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typeorm": "^0.3.7"
},
"bugs": {
"url": "https://github.com/freshgiammi-lab/connect-typeorm/issues"
},
"homepage": "https://github.com/freshgiammi-lab/connect-typeorm#readme",
"keywords": [
"typeorm",
"postgres",
"session"
]
}