| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 | {    "name": "eslint-plugin-no-unsanitized",    "description": "ESLint rule to disallow unsanitized code",    "version": "4.0.2",    "author": {        "name": "Frederik Braun et al."    },    "bugs": {        "url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"    },    "devDependencies": {        "@babel/core": "^7.15.8",        "@babel/eslint-parser": "^7.15.8",        "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",        "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",        "@babel/plugin-syntax-flow": "^7.16.0",        "@typescript-eslint/parser": "^5.2.0",        "eslint": "^8.1.0",        "mocha": "^9.2.0",        "nyc": "^15.1.0",        "typescript": "^3.9.7"    },    "peerDependencies": {        "eslint": "^6 || ^7 || ^8"    },    "homepage": "https://github.com/mozilla/eslint-plugin-no-unsanitized/",    "keywords": [        "eslint",        "eslint-plugin",        "eslintplugin",        "lint",        "sanitize",        "innerHTML",        "security"    ],    "license": "MPL-2.0",    "main": "index.js",    "repository": {        "type": "git",        "url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"    },    "scripts": {        "test": "nyc mocha tests/rules/",        "lint": "eslint ."    },    "files": [        "LICENSE",        "README.md",        "SCHEMA.md",        "SECURITY.md",        "docs",        "index.js",        "lib"    ]}
 |