UNPKG

not-so-weak

Version:
46 lines (45 loc) 1.11 kB
{ "name": "not-so-weak", "version": "2.0.0", "main": "./cjs/index.js", "scripts": { "build": "npm run cjs && npm run test", "cjs": "ascjs esm cjs", "test": "c8 node --expose-gc test/index.js", "coverage": "mkdir -p ./coverage; c8 report --reporter=text-lcov > ./coverage/lcov.info" }, "types": "./types/index.d.ts", "keywords": [ "WeakMap", "WeakSet", "Weakvalue", "iterable" ], "author": "Andrea Giammarchi", "license": "ISC", "devDependencies": { "ascjs": "^6.0.2", "c8": "^8.0.0" }, "module": "./esm/index.js", "type": "module", "exports": { ".": { "import": "./esm/index.js", "default": "./cjs/index.js" }, "./package.json": "./package.json" }, "directories": { "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/WebReflection/not-so-weak.git" }, "bugs": { "url": "https://github.com/WebReflection/not-so-weak/issues" }, "homepage": "https://github.com/WebReflection/not-so-weak#readme", "description": "Iterable WeakMap, WeakSet and WeakValue." }