UNPKG

1.08 kBJSONView Raw
1{
2 "name": "@opensnip/cachejs",
3 "version": "1.0.0",
4 "description": "Fast and lightweight caching library for javascript",
5 "main": "index.mjs",
6 "type": "module",
7 "exports": {
8 "types": "./index.d.ts",
9 "node": {
10 "import": "./index.mjs",
11 "require": "./index.cjs"
12 },
13 "default": "./index.cjs"
14 },
15 "directories": {
16 "test": "tests"
17 },
18 "scripts": {
19 "test": "jest"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/opensnip/cachejs.git"
24 },
25 "keywords": [
26 "opensnip",
27 "cachejs",
28 "lru cache",
29 "mru cache",
30 "lfu cache",
31 "mfu cache",
32 "fifo cache",
33 "lifo cache",
34 "cache",
35 "nodejs",
36 "library"
37 ],
38 "author": "Rajkumar Dusad",
39 "license": "MIT",
40 "types": "./index.d.ts",
41 "bugs": {
42 "url": "https://github.com/opensnip/cachejs/issues"
43 },
44 "homepage": "https://github.com/opensnip/cachejs#readme",
45 "devDependencies": {
46 "jest": "^29.4.2"
47 },
48 "files": [
49 "src/",
50 "LICENSE",
51 "README.md",
52 "index.cjs",
53 "index.mjs",
54 "index.d.ts"
55 ]
56}