-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 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
{
"name": "@day1co/fastcache",
"version": "3.3.8",
"description": "fast and simple cache using redis",
"url": "https://github.com/day1co/fastcache",
"repository": "https://github.com/day1co/fastcache",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "npm-run-all clean:build clean:module",
"clean:build": "rimraf ./coverage ./lib",
"clean:module": "rimraf ./node_modules",
"lint": "eslint --ext .js --ext .ts ./src",
"prebuild": "npm-run-all clean:build lint",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"serve": "echo no serve",
"start": "npm run serve",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose ./src",
"ci:test": "npm run test",
"watch": "tsc -w"
},
"peerDependencies": {
"@day1co/pebbles": "^3.1.0",
"ioredis": "^5.3.2"
},
"devDependencies": {
"@day1co/eslint-config": "^1.3.1",
"@day1co/prettier-config": "^1.2.2",
"@day1co/tsconfig": "^1.3.0",
"@tsconfig/node-lts": "^20.1.1",
"@types/ioredis-mock": "^8.2.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"ioredis-mock": "^8.9.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.2.2"
}
}