source: frontend/node_modules/@alloc/quick-lru/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 747 bytes
Line 
1{
2 "name": "@alloc/quick-lru",
3 "version": "5.2.0",
4 "description": "Simple “Least Recently Used” (LRU) cache",
5 "license": "MIT",
6 "repository": "sindresorhus/quick-lru",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "engines": {
14 "node": ">=10"
15 },
16 "scripts": {
17 "test": "xo && nyc ava && tsd"
18 },
19 "files": [
20 "index.js",
21 "index.d.ts"
22 ],
23 "keywords": [
24 "lru",
25 "quick",
26 "cache",
27 "caching",
28 "least",
29 "recently",
30 "used",
31 "fast",
32 "map",
33 "hash",
34 "buffer"
35 ],
36 "devDependencies": {
37 "ava": "^2.0.0",
38 "coveralls": "^3.0.3",
39 "nyc": "^15.0.0",
40 "tsd": "^0.11.0",
41 "xo": "^0.26.0"
42 }
43}
Note: See TracBrowser for help on using the repository browser.