-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.61 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
{
"name": "pg-tx",
"version": "1.0.1",
"description": "Transaction wrapper for node-postgres",
"main": ".build/index.js",
"types": ".build/index.d.ts",
"keywords": [
"pg",
"postgres",
"connection",
"transaction",
"savepoint",
"database",
"db",
"tx"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "env-cmd jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"jest": {
"testRegex": "(/tests/.*|(\\.|/)test)\\.tsx?$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"maxConcurrency": 50,
"testTimeout": 60000
},
"author": "Max Yankov <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/golergka/pg-tx"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/pg": "^7.14.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"env-cmd": "^10.1.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"pg-protocol": "^1.5.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"ts-mockito": "^2.6.1",
"typescript": "^4.2.4"
},
"dependencies": {
"pg": "^8.6.0"
}
}