This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
86 lines (86 loc) · 2.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
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
78
79
80
81
82
83
84
85
86
{
"name": "strapi-middleware-cache",
"version": "2.1.8",
"description": "Cache strapi requests",
"main": "./lib",
"types": "./types",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "run-s eslint:fix prettier:fix",
"test": "run-s test:*",
"test:tsc": "tsc",
"test:lint": "run-s eslint prettier",
"test:mocha": "mocha ./tests/*.test.js --exit"
},
"keywords": [
"cache",
"strapi",
"requests",
"redis",
"memcache"
],
"directories": {
"lib": "./lib",
"types": "./types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrixr/strapi-middleware-cache.git"
},
"author": "Patrick R",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"ioredis": "^4.17.1",
"koa-router": "^8.0.8",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"path-to-regexp": "^6.2.0",
"pluralize": "^8.0.0",
"redis-lru": "^0.6.0"
},
"devDependencies": {
"@types/ioredis": "^4.27.8",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/lodash": "^4.14.176",
"@types/lru-cache": "^5.1.1",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.31.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.0.3",
"koa": "^2.11.0",
"lint-staged": "^11.1.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"sinon": "^9.2.4",
"strapi-supercharged": "0.3.2",
"supertest": "^4.0.2",
"supertest-koa-agent": "^0.3.2",
"typescript": "^4.3.5",
"yorkie": "^2.0.0"
},
"peerDependencies": {},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
}
}