-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
91 lines (91 loc) · 2.56 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
87
88
89
90
91
{
"name": "speedgoose",
"version": "2.0.13",
"description": "Next-level mongoose caching layer with event based cache clearing",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/arqo123/speedgoose.git"
},
"author": "Arkadiusz Gil",
"license": "MIT",
"keywords": [
"mongoose",
"cache",
"mongodb",
"redis",
"ttl"
],
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"lint-staged": {
"*.{js,ts}": [
"eslint"
]
},
"lint-prepush": {
"base": "master",
"tasks": {
"*.{js,ts}": [
"eslint"
]
}
},
"scripts": {
"test": "jest",
"test:debug": "jest --runInBand",
"test-watch": "nodemon --exec 'npm test'",
"clean": "rimraf ./lib/*",
"lint:base": "eslint --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint . --fix & prettier . --write",
"lint": "yarn lint:base .",
"lint:ci": "yarn lint:base --quiet .&& tsc -p tsconfig.json",
"build": "yarn clean && tsc ",
"dev": "yarn clean && tsc --watch",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"dependencies": {
"debug": "^4.3.4",
"fastq": "^1.13.0",
"ioredis": "^5.2.2",
"keyv": "^4.4.1",
"mongoose": "^8.8.0",
"mpath": "^0.9.0",
"typedi": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/debug": "^4.1.7",
"@types/jest": "^29.0.0",
"@types/keyv": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"ioredis-mock": "^8.2.2",
"jest": "^29.0.2",
"jest-extended": "^3.0.2",
"lint-prepush": "^2.2.1",
"lint-staged": "^13.1.0",
"precise-commits": "^1.0.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/arqo123/speedgoose/issues"
},
"homepage": "https://github.com/arqo123/speedgoose#readme",
"directories": {
"lib": "lib"
}
}