-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.32 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.32 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
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
92
93
94
95
96
97
98
99
100
101
{
"name": "ha-store",
"version": "5.0.0",
"description": "Efficient data fetching",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest ./tests/unit",
"test:integration": "jest ./tests/integration",
"build": "npm run clean && tsc && node scripts/bundle-dts.js",
"clean": "rm -rf ./dist/*",
"bench": "node --experimental-strip-types --experimental-transform-types ./tests/profiling/index.ts",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20.0.0"
},
"funding": {
"type": "Github",
"url": "https://github.com/sponsors/fed135"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fed135/ha-store.git"
},
"keywords": [
"store",
"cache",
"batch",
"congestion",
"tlru"
],
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"bugs": {
"url": "https://github.com/fed135/ha-store/issues"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.spec.ts"
],
"extensionsToTreatAsEsm": [".ts"],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"diagnostics": false,
"useESM": true
}
],
"^.+\\.jsx?$": [
"ts-jest",
{
"diagnostics": false,
"useESM": true
}
]
}
},
"author": "frederic charette <fredericcharette@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.0",
"eslint": "^9.39.0",
"eslint-plugin-jest": "^29.1.0",
"husky": "^9.1.0",
"jest": "^30.2.0",
"split2": "^4.2.0",
"ts-jest": "^29.4.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.47.0"
},
"peerDependencies": {
"redis": "^5.10.0"
},
"contributors": [
"frederic charette <fredericcharette@gmail.com>",
"tim mulqueen <tim.mulqueen@gmail.com>",
"damon perron-laurin <damonperronlaurin@gmail.com>"
],
"types": "./dist/index.d.ts",
"dependencies": {
"lru-cache": "^11.2.0"
}
}