-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
{
"name": "tiny-lru",
"description": "Tiny LRU cache for Client or Server",
"version": "11.2.11",
"homepage": "https://github.com/avoidwork/tiny-lru",
"author": "Jason Mulligan <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/avoidwork/tiny-lru.git"
},
"bugs": {
"url": "https://github.com/avoidwork/tiny-lru/issues"
},
"files": [
"dist/tiny-lru.cjs",
"dist/tiny-lru.js",
"*.d.ts"
],
"license": "BSD-3-Clause",
"source": "src/lru.js",
"main": "dist/tiny-lru.cjs",
"exports": {
"types": "./types/lru.d.ts",
"import": "./dist/tiny-lru.js",
"require": "./dist/tiny-lru.cjs"
},
"type": "module",
"types": "types/lru.d.ts",
"engines": {
"node": ">=12"
},
"engineStrict": true,
"scripts": {
"build": "npm run lint && npm run rollup && npm run mocha",
"benchmark": "node benchmark.js",
"changelog": "auto-changelog -p",
"lint": "eslint --fix *.js src/*.js test/*.js",
"mocha": "nyc mocha test/*.js",
"rollup": "rollup --config",
"test": "npm run lint && npm run mocha",
"types": "npx -p typescript tsc src/lru.js --declaration --allowJs --emitDeclarationOnly --outDir .",
"prepare": "husky"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"auto-changelog": "^2.4.0",
"eslint": "^9.7.0",
"husky": "^9.1.1",
"mocha": "^11.0.1",
"nyc": "^17.0.0",
"precise": "^4.0.3",
"rollup": "^4.19.0",
"typescript": "^5.5.3"
},
"keywords": [
"LRU",
"cache",
"tiny",
"client",
"server",
"least",
"recently",
"used"
]
}