-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.76 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
{
"name": "@next-boost/redis-cache",
"version": "0.4.0",
"description": "Official redis cache for next-boost",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "yarn test && rm -rf dist && yarn build",
"lint": "eslint src/*.ts test/*.ts",
"test": "NODE_ENV=test mocha --require dotenv/config --require ts-node/register test/**/*.test.ts --timeout 30000",
"test-cov": "NODE_ENV=test nyc mocha --require dotenv/config test/*.test.ts --timeout 30000"
},
"files": [
"dist",
"README.md"
],
"author": {
"name": "Rakuraku Jyo",
"email": "[email protected]"
},
"homepage": "https://github.com/next-boost/redis-cache",
"repository": {
"type": "git",
"url": "https://github.com/next-boost/redis-cache.git"
},
"license": "MIT",
"dependencies": {
"flatted": "^3.2.5",
"ioredis": "^4.28.2"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/ioredis": "^4.28.2",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chai": "^4.2.0",
"dotenv": "^16.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.0.3"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcovonly",
"html"
],
"sourceMap": true
},
"keywords": [
"redis-cache",
"ttl",
"redis",
"cache"
],
"publishConfig": {
"access": "public"
}
}