forked from gajus/slonik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.75 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
112
113
{
"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": {
"@types/roarr": "^2.14.2",
"concat-stream": "^2.0.0",
"delay": "^4.4.0",
"es6-error": "^4.1.1",
"get-stack-trace": "^2.0.3",
"is-plain-object": "^5.0.0",
"iso8601-duration": "^1.2.0",
"pg": "^8.4.1",
"pg-connection-string": "^2.4.0",
"pg-copy-streams": "^5.1.1",
"pg-copy-streams-binary": "^2.0.1",
"pg-cursor": "^2.4.1",
"pg-types": "^3.0.1",
"postgres-array": "^2.0.0",
"postgres-interval": "^2.1.0",
"roarr": "^2.15.4",
"serialize-error": "^7.0.1",
"through2": "^4.0.2",
"ulid": "^2.3.0"
},
"description": "A PostgreSQL client with strict types, detailed logging and assertions.",
"devDependencies": {
"@types/concat-stream": "^1.6.0",
"@types/pg": "^7.14.5",
"@types/pg-copy-streams": "^1.2.1",
"@types/sinon": "^9.0.8",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"ava": "^3.13.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-canonical": "^24.1.1",
"expect-type": "^0.8.0",
"gitdown": "^3.1.3",
"husky": "^4.3.0",
"nyc": "^15.1.0",
"semantic-release": "^17.2.1",
"sinon": "^9.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.0-beta"
},
"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/index.js",
"types": "./dist/index.d.ts",
"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' --max-warnings 0",
"type-check": "tsc -p .",
"lint": "npm run eslint ./src ./test && npm run type-check",
"test": "NODE_ENV=test nyc ava --verbose"
},
"version": "0.0.0-development"
}