Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « quick-lru « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46c175bc5ed824825843a9b0c9426e12bdab0aed (plain)
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
{
	"name": "quick-lru",
	"version": "4.0.1",
	"description": "Simple \"Least Recently Used\" (LRU) cache",
	"license": "MIT",
	"repository": "sindresorhus/quick-lru",
	"author": {
		"name": "Sindre Sorhus",
		"email": "sindresorhus@gmail.com",
		"url": "sindresorhus.com"
	},
	"engines": {
		"node": ">=8"
	},
	"scripts": {
		"test": "xo && nyc ava && tsd"
	},
	"files": [
		"index.js",
		"index.d.ts"
	],
	"keywords": [
		"lru",
		"quick",
		"cache",
		"caching",
		"least",
		"recently",
		"used",
		"fast",
		"map",
		"hash",
		"buffer"
	],
	"devDependencies": {
		"ava": "^1.4.1",
		"coveralls": "^3.0.3",
		"nyc": "^14.1.1",
		"tsd": "^0.7.2",
		"xo": "^0.24.0"
	}
}