forked from GitbookIO/lru-diskcache
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 Bytes
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
{
"name": "@ironfly/lru-diskcache",
"version": "1.1.2",
"description": "A disk cache object that deletes the least-recently-used items.",
"author": "Samy Pesse <samypesse@gmail.com>",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ironflytech/lru-diskcache.git"
},
"dependencies": {
"q": "^1.4.1",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"fs-extra": "^0.26.5",
"tmp": "^0.0.28",
"crc": "^3.4.0",
"fswrite-stream": "^1.0.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"should": "^11.1.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --timeout 15000"
},
"license": "Apache-2.0"
}