-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 970 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
{
"name": "fs-lazy-cache",
"version": "2.0.1",
"description": "Lazy-loading, in-memory filesystem cache for node.js",
"main": "./distribution/index.js",
"scripts": {
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"test": "node ./distribution/test.js",
"prepare": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjjakes/fs-lazy-cache.git"
},
"keywords": [
"filesystem",
"fs",
"lazy",
"loading",
"memory",
"cache"
],
"author": "https://github.com/rjjakes",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjjakes/fs-lazy-cache/issues"
},
"homepage": "https://github.com/rjjakes/fs-lazy-cache#readme",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "6",
"babel-preset-es2015": "6"
},
"dependencies": {
"fs-extra": "^4.0.2",
"lodash.startswith": "^4.2.1",
"memory-cache": "^0.2.0"
}
}