generated from prisma/prisma-client-extension-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "prisma-extension-log",
"version": "0.2.0",
"author": "Roberto Sero",
"license": "MIT",
"description": "Prisma client extension for logging queries",
"repository": {
"type": "git",
"url": "https://github.com/random42/prisma-extension-log.git"
},
"keywords": [
"prisma",
"@prisma/client",
"extension",
"log",
"logging",
"query"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**"],
"scripts": {
"prepare": "run-s build",
"build": "tsc",
"prebuild": "rimraf dist",
"prepublishOnly": "run-s test",
"test": "node --test --test-only --require ts-node/register ./test/*.test.ts",
"pretest": "prisma db push --force-reset --accept-data-loss --schema=./test/prisma/schema.prisma"
},
"peerDependencies": {
"@prisma/client": "^5.4.1"
},
"devDependencies": {
"@prisma/client": "^5.4.1",
"npm-run-all": "^4.1.5",
"prisma": "^5.4.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}