-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@dwtechs/antity-pgsql",
"version": "0.17.0",
"description": "Open source library to add PostgreSQL support to @dwtechs/Antity entities.",
"keywords": [
"entities"
],
"homepage": "https://github.com/DWTechs/Antity-pgsql.js",
"main": "dist/antity-pgsql",
"types": "dist/antity-pgsql",
"repository": {
"type": "git",
"url": "https://github.com/DWTechs/Antity-pgsql.js"
},
"bugs": {
"url": "https://github.com/DWTechs/Antity-pgsql.js/issues",
"email": ""
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"email": "http://www.lcluber.com/contact",
"url": "http://www.lcluber.com"
},
"contributors": [],
"scripts": {
"start": "",
"prebuild": "npm install",
"build": "node ./scripts/clear && tsc && npm run rollup && node ./scripts/copy && npm run test",
"rollup:mjs": "rollup --config rollup.config.mjs",
"rollup:cjs": "rollup --config rollup.config.cjs.mjs",
"rollup": "npm run rollup:mjs",
"test": "jest --coverage"
},
"files": [
"dist/"
],
"dependencies": {
"@dwtechs/checkard": "3.6.0",
"@dwtechs/winstan": "0.7.0",
"@dwtechs/antity": "0.16.0",
"@dwtechs/sparray": "0.2.1",
"pg": "8.20.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/pg-pool": "2.0.6",
"@types/express": "5.0.0",
"babel-jest": "29.7.0",
"core-js": "3.33.0",
"jest": "29.7.0",
"rollup": "4.24.0",
"typescript": "5.6.3"
}
}