-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "ha-store",
"version": "4.0.0",
"description": "Efficient data fetching",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha ./tests/unit --exit",
"test:integration": "mocha ./tests/integration --exit",
"bench": "node ./tests/profiling/index.js"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fed135/ha-store.git"
},
"keywords": [
"store",
"cache",
"batch",
"congestion",
"tlru"
],
"bugs": {
"url": "https://github.com/fed135/ha-store/issues"
},
"author": "frederic charette <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@ha-store/redis": "^4.0.1",
"chai": "^4.3.0",
"eslint": "^8.20.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"split2": "^4.1.0"
},
"contributors": [
"frederic charette <[email protected]>",
"tim mulqueen <[email protected]>",
"damon perron-laurin <[email protected]>"
],
"typings": "./src/index.d.ts",
"dependencies": {
"lru-cache": "^7.13.0"
}
}