-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 1.89 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
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/slonik-utilities/**/*"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"core-js": "^3.20.0",
"delay": "^4.3.0",
"es6-error": "^4.1.1",
"lodash": "^4.17.21",
"roarr": "^7.14.0",
"serialize-error": "^5.0.0"
},
"description": "Utilities for manipulating data in PostgreSQL database using Slonik.",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@types/sinon": "^10.0.6",
"ava": "^4.3.1",
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"eslint-config-canonical": "^37.0.3",
"gitdown": "^3.1.5",
"husky": "^4.2.3",
"nyc": "^15.1.0",
"semantic-release": "^19.0.3",
"sinon": "^12.0.1",
"slonik": "^33.0.2",
"ts-node": "^10.4.0"
},
"peerDependencies": {
"slonik": ">28"
},
"engines": {
"node": ">=8.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",
"slonik",
"utilities"
],
"license": "BSD-3-Clause",
"main": "./dist/src/index.js",
"name": "slonik-utilities",
"repository": {
"type": "git",
"url": "https://github.com/gajus/slonik-utilities"
},
"scripts": {
"build": "rm -fr ./dist && tsc",
"create-readme": "gitdown ./.README/README.md --output-file ./README.md",
"lint": "eslint ./src ./test && tsc --noEmit",
"test": "NODE_ENV=test nyc ava --verbose --serial"
},
"typings": "./dist/src/index.d.ts",
"version": "1.1.0"
}