This repository has been archived by the owner on Oct 25, 2024. It is now read-only.
forked from gajus/slonik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.67 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/slonik/**/*"
],
"require": [
"ts-node/register/transpile-only"
],
"timeout": "30s"
},
"dependencies": {
"concat-stream": "^2.0.0",
"es6-error": "^4.1.1",
"fast-safe-stringify": "^2.1.1",
"get-stack-trace": "^2.1.1",
"hyperid": "^2.3.1",
"is-plain-object": "^5.0.0",
"iso8601-duration": "^1.3.0",
"p-defer": "^3.0.0",
"pg": "^8.7.3",
"pg-copy-streams": "^6.0.2",
"pg-copy-streams-binary": "^2.2.0",
"pg-cursor": "^2.7.3",
"pg-protocol": "^1.5.0",
"postgres-array": "^3.0.1",
"postgres-interval": "^4.0.0",
"roarr": "^7.11.0",
"serialize-error": "^8.0.0",
"through2": "^4.0.2"
},
"description": "A Node.js PostgreSQL client with strict types, detailed logging and assertions.",
"devDependencies": {
"@types/concat-stream": "^1.6.1",
"@types/pg-copy-streams": "^1.2.1",
"@types/sinon": "^10.0.6",
"@types/through2": "^2.0.36",
"ava": "^4.1.0",
"coveralls": "^3.1.1",
"delay": "^5.0.0",
"eslint": "^8.11.0",
"eslint-config-canonical": "^33.0.1",
"expect-type": "^0.13.0",
"gitdown": "^3.1.5",
"husky": "^4.3.6",
"nyc": "^15.1.0",
"pg-native": "^3.0.0",
"semantic-release": "^18.0.1",
"sinon": "^12.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=10.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run build",
"pre-push": "gitdown ./.README/README.md --output-file ./README.md --check"
}
},
"keywords": [
"postgresql",
"promise",
"types"
],
"license": "BSD-3-Clause",
"main": "./dist/src/index.js",
"name": "slonik",
"nyc": {
"all": true,
"exclude": [
"src/bin",
"src/queries/*.ts",
"**/*.d.ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html",
"text-summary"
],
"require": [
"ts-node/register/transpile-only"
],
"silent": true,
"sourceMap": false
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/slonik"
},
"scripts": {
"build": "rm -fr ./dist && tsc -p tsconfig.lib.json",
"create-readme": "gitdown ./.README/README.md --output-file ./README.md",
"eslint": "eslint --ext '.ts'",
"lint": "npm run eslint ./src ./test && npm run type-check",
"test": "ROARR_LOG=true NODE_ENV=test nyc ava --verbose --serial",
"type-check": "tsc -p ."
},
"types": "./dist/src/index.d.ts",
"version": "0.0.0-development"
}