UNPKG

es-map

Version:

An ES-spec-compliant Map shim/polyfill/replacement that works as far down as ES3

96 lines (95 loc) 2.55 kB
{ "name": "es-map", "version": "2.0.1", "description": "An ES-spec-compliant Map shim/polyfill/replacement that works as far down as ES3", "main": "index.js", "exports": { ".": "./index.js", "./auto": "./auto.js", "./polyfill": "./polyfill.js", "./implementation": "./implementation.js", "./shim": "./shim.js", "./package.json": "./package.json" }, "scripts": { "prepack": "npmignore --auto --commentLines=autogenerated", "prepublishOnly": "safe-publish-latest", "prepublish": "not-in-publish || npm run prepublishOnly", "pretest": "npm run lint", "lint": "eslint --ext=js,mjs .", "postlint": "es-shim-api --type=constructor", "tests-only": "nyc tape 'test/**/*.js'", "test": "npm run tests-only", "posttest": "npx npm@'>=10.2' audit --production", "version": "auto-changelog && git add CHANGELOG.md", "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" }, "repository": { "type": "git", "url": "git+https://github.com/es-shims/es-map.git" }, "keywords": [ "Set", "Map", "collections", "shim", "polyfill", "es-shim", "API" ], "author": "Nicolò Ribaudo <nicolo.ribaudo@gmail.com>", "funding": { "url": "https://github.com/es-shims/es-map?sponsor=1" }, "license": "MIT", "bugs": { "url": "https://github.com/es-shims/es-map/issues" }, "homepage": "https://github.com/es-shims/es-map#readme", "devDependencies": { "@es-shims/api": "^3.0.1", "@ljharb/eslint-config": "^21.1.1", "array.from": "^1.1.6", "auto-changelog": "^2.5.0", "encoding": "^0.1.13", "eslint": "=8.8.0", "functions-have-names": "^1.2.3", "has-strict-mode": "^1.0.1", "in-publish": "^2.0.1", "npmignore": "^0.3.1", "nyc": "^10.3.2", "safe-publish-latest": "^2.0.0", "tape": "^5.9.0" }, "dependencies": { "call-bound": "^1.0.2", "define-properties": "^1.2.1", "es-abstract": "^1.23.5", "es-get-iterator": "^1.1.3", "es-set-tostringtag": "^2.0.3", "for-each": "^0.3.3", "get-intrinsic": "^1.2.6", "globalthis": "^1.0.4", "has-proto": "^1.2.0", "has-symbols": "^1.1.0", "internal-slot": "^1.0.7", "iterator.prototype": "^1.1.3", "object.entries": "^1.1.8" }, "auto-changelog": { "output": "CHANGELOG.md", "template": "keepachangelog", "unreleased": false, "commitLimit": false, "backfillLimit": false, "hideCredit": true }, "publishConfig": { "ignore": [ ".github/workflows" ] }, "engines": { "node": ">= 0.4" } }