-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
{
"name": "@melleb/pgtx",
"version": "0.4.3",
"description": "Simple node-postgres wrapper that abstracts transactions and savepoints",
"repository": {
"type": "git",
"url": "git+https://github.com/MelleB/pgtx.git"
},
"homepage": "https://github.com/MelleB/pgtx#readme",
"bugs": {
"url": "https://github.com/MelleB/pgtx/issues"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run test:coverage && npm run build",
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"prettier": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"keywords": [
"node-postgres",
"transaction",
"savepoint",
"postgres",
"pg",
"nested",
"rollback"
],
"author": "MelleB",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "2.27.12",
"@eslint/js": "9.20.0",
"@types/eslint__js": "8.42.3",
"@types/pg": "8.11.11",
"@vitest/coverage-v8": "3.0.5",
"dotenv": "16.4.7",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.5.1",
"tsup": "8.3.6",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vitest": "3.0.5"
},
"peerDependencies": {
"pg": "8.13.3"
}
}