-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1008 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1008 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "node-filesystem-cache",
"version": "1.0.2",
"description": "File cached for NodeJS",
"keywords": [
"nodejs file cache",
"nodejs caching storage",
"file cache for nodejs",
"filesystem cache for nodejs"
],
"main": "index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib/"
],
"dependencies": {
"sha1": "^1.1.1"
},
"devDependencies": {
"mocha": "^8.1.0",
"nyc": "^15.1.0",
"supertest": "^4.0.2"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-nyc": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --timeout 30000 --exit"
},
"author": "TamIT <tam.maris94@gmail.com> (https://tamit.info)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/trinhtam/node-filesystem-cache.git"
},
"homepage": "https://github.com/trinhtam/node-filesystem-cache",
"bugs": {
"url": "https://github.com/trinhtam/node-filesystem-cache/issues"
}
}