CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json44 linesDownload Raw Back to quick-lru
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}44