-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 915 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
{
"name": "recacheman-file",
"version": "0.2.5",
"description": "File caching library for Node.JS and also cache engine for cacheman",
"author": "Taron Foxworth <[email protected]>",
"contributors": [
{
"name": "Jeremiah Harlan",
"email": "[email protected]"
}
],
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/aalfiann/recacheman-file.git"
},
"keywords": [
"cache",
"file",
"caching",
"store",
"ttl",
"cacheman"
],
"license": "MIT",
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"dependencies": {
"fs-extra": "~0.26.2",
"sanitize-filename": "^1.5.3"
}
}