-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.58 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.58 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
61
62
63
64
65
66
67
68
69
70
71
{
"author": {
"email": "gajus@gajus.com",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"src/**/*.test.ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"dependencies": {
"roarr": "^7.14.0",
"strip-comments": "^2.0.1"
},
"description": "Cache Slonik query results.",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"ava": "^3.15.0",
"coveralls": "^3.1.1",
"eslint": "^8.39.0",
"eslint-config-canonical": "^41.0.3",
"husky": "^8.0.0",
"inline-loops.macro": "^1.2.2",
"nyc": "^15.1.0",
"semantic-release": "^20.1.3",
"sinon": "^12.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16.0"
},
"files": [
"src",
"dist"
],
"keywords": [
"postgresql",
"interceptor",
"format"
],
"license": "BSD-3-Clause",
"main": "./dist/index.js",
"name": "slonik-interceptor-query-cache",
"peerDependencies": {
"slonik": ">=27.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/slonik-interceptor-query-cache"
},
"scripts": {
"build": "rm -fr ./dist && tsc --project tsconfig.build.json",
"lint:eslint": "eslint .",
"lint:tsc": "tsc",
"prepare": "husky install",
"test:ava": "nyc ava --verbose --serial"
},
"types": "./dist/index.d.ts",
"version": "2.0.0"
}