-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.37 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.37 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
52
53
54
55
56
57
58
59
{
"name": "sugar-cache",
"version": "1.0.0",
"description": "",
"author": {
"name": "Shantanu Verma",
"email": "vermashantanu@hotmail.com",
"url": "https://github.com/SaurusXI"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"semantic-release": "^19.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest --forceExit",
"lint": "eslint . --ext .ts --ext .js",
"lint:fix": "eslint . --ext .ts --ext .js --fix"
},
"dependencies": {
"@captemulation/get-parameter-names": "^1.4.2",
"ioredis": "^5.3.2",
"prom-client": "^15.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SaurusXI/sugar-cache.git"
},
"bugs": {
"url": "https://github.com/SaurusXI/sugar-cache/issues"
},
"homepage": "https://github.com/SaurusXI/sugar-cache",
"license": "GPLV3",
"keywords": [
"redis",
"ioredis",
"cache",
"LRU"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"release": {
"branches": {
"name": "main"
}
}
}