-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
44
45
{
"name": "micro-cache",
"version": "3.0.3",
"description": "A minimal local synchronous file system cache",
"author": "Marc Miles",
"license": "MIT",
"homepage": "https://github.com/UWFosterIT/micro-cache#readme",
"bugs:": {
"url": "https://github.com/UWFosterIT/node-uwsws/micro-cache"
},
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UWFosterIT/micro-cache.git"
},
"keywords": [
"fs",
"cache",
"small",
"filesystem"
],
"bugs": {
"url": "https://github.com/UWFosterIT/micro-cache/issues"
},
"dependencies": {
"sha1": "^1.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/eslint": "^7.2.6",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-security": "^1.4.0",
"mocha": "^8.2.1"
},
"scripts": {
"lint": "eslint ./src/ ./test/ --fix",
"test": "mocha --bail"
},
"engines": {
"node": ">= v12.0.0"
}
}