weak-value
Version:
A Map with weakly referenced values, instead of keys
39 lines (38 loc) • 974 B
JSON
{
"name": "weak-value",
"version": "1.0.2",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run test",
"cjs": "ascjs --no-default esm cjs",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"test": "c8 node --expose-gc test/index.js"
},
"keywords": [
"Weakvalue",
"WeakMap",
"WeakRef"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"description": "A Map with weakly referenced values, instead of keys",
"devDependencies": {
"ascjs": "^5.0.1",
"c8": "^7.12.0",
"coveralls": "^3.1.1"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/weak-value.git"
},
"bugs": {
"url": "https://github.com/WebReflection/weak-value/issues"
},
"homepage": "https://github.com/WebReflection/weak-value#readme"
}