-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 955 Bytes
/
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": "eslint-plugin-prisma-soft-delete",
"version": "0.0.6-development",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsup src/index.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"files": [
"dist/**"
],
"dependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"@typescript-eslint/utils": "^5.36.2",
"eslint": "^8.23.0",
"jest": "^29.0.2",
"ts-jest": "^28.0.8",
"tsup": "^6.2.3",
"typescript": "^4.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/sumancbd/eslint-plugin-prisma-soft-delete"
},
"author": "Suman Sarkar",
"keywords": [
"prisma",
"eslint",
"prisma-soft-delete",
"soft-delete",
"custom-eslint-rule",
"typescript",
"typescript-eslint"
]
}