-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "file-sys-cache",
"version": "2.1.0",
"description": "A Node.js package providing efficient caching using the file system for storage.",
"type": "module",
"main": "./dist/file-sys-cache.cjs",
"module": "./dist/file-sys-cache.js",
"types": "./dist/file-sys-cache.d.ts",
"exports": {
".": {
"import": "./dist/file-sys-cache.js",
"require": "./dist/file-sys-cache.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint --fix --ext .js,.ts .",
"pack": "npm pack --dry-run"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndragun92/file-sys-cache.git"
},
"keywords": [
"cache",
"caching",
"file-cache",
"filesystem",
"node",
"npm",
"package",
"system",
"storage",
"performance",
"optimization"
],
"author": "Nemanja Dragun",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndragun92/file-sys-cache/issues"
},
"homepage": "https://ndragun92.github.io/file-sys-cache",
"publishConfig": {
"@ndragun92:registry": "https://registry.npmjs.org/",
"access": "public"
}
}