-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "memoize-fs",
"version": "4.1.1",
"private": false,
"type": "module",
"author": "Boris Diakur (https://borisdiakur.de)",
"description": "Node.js solution for memoizing/caching function results on the file system",
"keywords": [
"memoize",
"memoizer",
"cache",
"caching",
"memoization",
"file system",
"fs"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"lint": "eslint .",
"test": "npm run lint && tsc --noEmit && npm run coverage",
"open-coverage": "open coverage/lcov-report/index.ts.html",
"publish-coverage": "npm run coverage && coveralls < coverage/lcov.info",
"coverage": "vitest run --coverage"
},
"homepage": "https://github.com/borisdiakur/memoize-fs",
"bugs": {
"url": "https://github.com/borisdiakur/memoize-fs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/borisdiakur/memoize-fs"
},
"engines": {
"node": ">= 18.0.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"meriyah": "^6.0.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^20.11.24",
"@types/serialize-javascript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitest/coverage-v8": "^1.0.4",
"coveralls": "^3.1.1",
"esbuild": "^0.24.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"open-cli": "^8.0.0",
"prettier": "^3.0.0",
"serialize-javascript": "^6.0.0",
"typescript": "^5.3.3",
"vite": "^6.0.4",
"vitest": "^1.0.4"
},
"license": "MIT",
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "none"
}
}