{ "name": "html-element-map", "version": "1.3.1", "description": "Look up HTML tag names via HTML Element constructors, and vice versa.", "main": "index.js", "exports": { ".": [ { "import": "./index.mjs", "require": "./index.js", "default": "./index.js" }, "./index.js" ], "./": "./index.js", "./index": "./index.js", "./index.js": "./index.js", "./byTag": [ { "import": "./byTag.mjs", "default": "./byTag.js" }, "./byTag.js" ], "./byTag.js": "./byTag.js", "./byConstructor": [ { "import": "./byConstructor.mjs", "default": "./byConstructor.js" }, "./byConstructor.js" ], "./byConstructor.js": "./byConstructor.js", "./byConstructorName": [ { "import": "./byConstructorName.mjs", "default": "./byConstructorName.js" }, "./byConstructorName.js" ], "./byConstructorName.js": "./byConstructorName.js", "./getData": "./getData.js", "./getData.js": "./getData.js", "./package": "./package.json", "./package.json": "./package.json", "./test": "./test/index.js", "./test/": "./test/" }, "scripts": { "prepublishOnly": "safe-publish-latest", "prepublish": "not-in-publish || npm run prepublishOnly", "pretest": "npm run lint", "tests-only": "nyc tape 'test/**/*.js'", "tests-esm": "nyc node test/index.mjs", "test": "npm run tests-only && npm run tests-esm", "posttest": "aud --production", "lint": "eslint .", "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/ljharb/html-element-map.git" }, "keywords": [ "html", "element", "tag", "lookup", "html", "element", "constructor" ], "author": "Jordan Harband ", "funding": { "url": "https://github.com/sponsors/ljharb" }, "license": "MIT", "bugs": { "url": "https://github.com/ljharb/html-element-map/issues" }, "homepage": "https://github.com/ljharb/html-element-map#readme", "devDependencies": { "@ljharb/eslint-config": "^17.6.0", "aud": "^1.1.5", "auto-changelog": "^2.2.1", "eslint": "^7.26.0", "for-each": "^0.3.3", "function.prototype.name": "^1.1.4", "isarray": "^2.0.5", "nyc": "^10.3.2", "object-inspect": "^1.10.3", "safe-publish-latest": "^1.1.4", "tape": "^5.2.2" }, "dependencies": { "array.prototype.filter": "^1.0.0", "call-bind": "^1.0.2" }, "testling": { "files": "test/index.js", "browsers": [ "iexplore/9.0..latest", "firefox/4.0..6.0", "firefox/15.0..latest", "firefox/nightly", "chrome/4.0..10.0", "chrome/20.0..latest", "chrome/canary", "opera/11.6..latest", "opera/next", "safari/5.0..latest", "ipad/6.0..latest", "iphone/6.0..latest", "android-browser/4.2" ] }, "auto-changelog": { "output": "CHANGELOG.md", "template": "keepachangelog", "unreleased": false, "commitLimit": false, "backfillLimit": false } }