forked from olivierwilkinson/prisma-extension-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
72
73
74
75
76
77
{
"name": "@roundtreasury/prisma-extension-soft-delete",
"version": "2.0.0",
"description": "Prisma extension for soft deleting records",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"module": "dist/esm/src/index.js",
"scripts": {
"build": "npm-run-all build:cjs build:esm",
"build:cjs": "tsc -p tsconfig.build.json",
"build:esm": "tsc -p tsconfig.esm.json",
"test:unit": "prisma generate && jest --config jest.config.unit.js",
"test:e2e": "./test/scripts/run-with-postgres.sh jest --config jest.config.e2e.js --runInBand",
"test": "./test/scripts/run-with-postgres.sh jest --runInBand",
"lint": "eslint ./src --fix --ext .ts",
"typecheck": "npm run build:cjs -- --noEmit && npm run build:esm -- --noEmit",
"validate": "kcd-scripts validate lint,typecheck,test",
"semantic-release": "semantic-release",
"doctoc": "doctoc ."
},
"files": [
"dist"
],
"keywords": [
"prisma",
"client",
"middleware"
],
"author": "Olivier Wilkinson",
"license": "Apache-2.0",
"dependencies": {
"@roundtreasury/prisma-extension-nested-operations": "3.0.3"
},
"peerDependencies": {
"@prisma/client": "*"
},
"devDependencies": {
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "^7.8.0",
"@types/faker": "^5.5.9",
"@types/jest": "^29.2.5",
"@types/node": "^25.9.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"doctoc": "^2.2.0",
"eslint": "^7.6.0",
"faker": "^5.0.0",
"jest": "^29.3.1",
"kcd-scripts": "^5.0.0",
"npm-run-all": "^4.1.5",
"prisma": "^7.8.0",
"semantic-release": "^17.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^9.1.1",
"typescript": "^5.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/round-cash/prisma-extension-soft-delete.git"
},
"release": {
"branches": [
"main",
{
"name": "prerelease",
"prerelease": true
},
{
"name": "next",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
}
}