-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 938 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 938 Bytes
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
{
"name": "lru-weak-cache",
"version": "0.3.3",
"description": "A caching Map<string, V extends object> that deletes the least-recently-used items with weak references and async generation. Inspired by [lru-cache](https://www.npmjs.com/package/lru-cache).",
"main": "index.js",
"scripts": {
"test": "mocha --bail --reporter spec test/",
"test-coverage": "nyc --reporter=lcov --reporter=text-summary npm test"
},
"author": "NexusTools <contact@nexustools.com>",
"contributors": [
"Katelyn Slater <ktaeyln@gmail.com>"
],
"repository": "github:NexusTools/node-lru-weak-cache",
"typings": "./index.d.ts",
"license": "Apache-2.0",
"devDependencies": {
"@types/async": "^3.2.5",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"async": "^3.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19"
},
"dependencies": {
"weak-napi": "^2.0.2"
}
}