-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1016 Bytes
/
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
{
"name": "read-cached-file",
"version": "1.0.7",
"description": "Cache the result of a slow and/or resource/time consuming operation (e.g. response from a server request, heavy computation) into a local file.",
"main": "readCachedFile.js",
"scripts": {
"doc": "jsdoc -c ./jsdoc.conf.json",
"postdoc": "start docs/index.html"
},
"type": "module",
"keywords": [
"local",
"cache",
"read",
"cached",
"file",
"slow",
"save",
"network-requests",
"resource-consumption",
"local-caching",
"local-file",
"speed-up",
"time-consuming"
],
"author": "kevduc",
"license": "MIT",
"devDependencies": {
"jsdoc": "^3.6.7"
},
"directories": {
"doc": "docs"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/kevduc/read-cached-file.git"
},
"bugs": {
"url": "https://github.com/kevduc/read-cached-file/issues"
},
"homepage": "https://github.com/kevduc/read-cached-file#readme"
}