-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "@nesoi/plugin-postgres",
"version": "3.4.15",
"description": "PostgreSQL plugin for the nesoi framework",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --watch",
"test:ci": "jest --runInBand",
"lint": "eslint src",
"build": "tsc -p tsconfig.build.json",
"check": "npm run lint && npm run build && npm run test",
"bundle": "npx tsx scripts/bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nesoi-org/nesoi-plugin-postgres.git"
},
"keywords": [
"nesoi",
"postgresql"
],
"author": "Hugo Aboud",
"license": "MIT",
"bugs": {
"url": "https://github.com/nesoi-org/nesoi-plugin-postgres/issues"
},
"homepage": "https://github.com/nesoi-org/nesoi-plugin-postgres#readme",
"peerDependencies": {
"nesoi": "^3.4.19"
},
"dependencies": {
"postgres": "3.4.7"
},
"devDependencies": {
"@eslint/js": "9.25.0",
"@types/jest": "29.5.14",
"@types/node": "22.14.1",
"eslint": "9.25.0",
"jest": "29.7.0",
"nesoi": "^3.4.19",
"ts-jest": "29.2.5",
"tsx": "4.19.4",
"typescript": "5.8.3",
"typescript-eslint": "8.30.1"
}
}