generated from losefor/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "prisma-redis-caching",
"version": "0.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc",
"check-types": "tsc",
"clean": "rimraf dist",
"clear:hard": "rimraf dist && rimraf node_modules",
"lint": "eslint .",
"lint-fix": "npm run lint --fix"
},
"devDependencies": {
"@types/lodash": "^4.14.176",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"author": {
"name": "Muhammed Baqer Ahmed (@losefor)"
},
"files": [
"dist/**/*"
],
"dependencies": {
"lodash": "^4.17.21"
},
"repository": {
"type": "git",
"url": "https://github.com/losefor/prisma-redis-caching"
},
"keywords": [
"prisma",
"caching",
"redis"
]
}