-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
75
76
77
78
79
80
81
{
"name": "pg-promise-strict",
"description": "postgresql with promises and strict types and returning size of results",
"version": "1.4.2",
"author": "Codenautas <[email protected]>",
"license": "MIT",
"repository": "codenautas/pg-promise-strict",
"main": "dist/lib/pg-promise-strict.js",
"types": "dist/lib/pg-promise-strict.d.ts",
"files": [
"dist",
"dist/lib"
],
"contributors": [
{
"name": "Emilio Platzer",
"email": "[email protected]"
}
],
"dependencies": {
"best-globals": "^1.1.6",
"cast-error": "^0.1.1",
"fs-extra": "^11.2.0",
"like-ar": "^0.5.1",
"pg": "^8.13.1",
"pg-copy-streams": "^6.0.6"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.7",
"@types/pg": "^8.11.10",
"@types/pg-copy-streams": "^1.2.5",
"colors": "^1.4.0",
"discrepances": "^0.2.8",
"expect.js": "^0.3.1",
"line-splitter": "^0.8.0",
"mini-tools": "^1.12.2",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"type-store": "^0.4.4",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "tsc -p . && nyc mocha --exit test/",
"test-real": "mocha --reporter spec --bail --check-leaks test/test-with-real-db.js",
"test-intensive": "mocha --reporter spec --bail --check-leaks test/intensive-tests.js",
"test-common": "mocha --reporter spec --bail --check-leaks test/common-tests.js",
"try-t": "mocha --reporter spec --bail --check-leaks test/trying-timeout.js",
"start": "node examples/use-examples.js"
},
"nyc": {
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 99,
"extension": [
".js",
".ts"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
},
"qa-control": {
"package-version": "0.3.0",
"run-in": "server",
"test-appveyor": true,
"type": "lib",
"stage": "extending",
"coverage": 100
}
}