package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "eslint-plugin-no-unsanitized",
  3. "description": "ESLint rule to disallow unsanitized code",
  4. "version": "4.0.2",
  5. "author": {
  6. "name": "Frederik Braun et al."
  7. },
  8. "bugs": {
  9. "url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"
  10. },
  11. "devDependencies": {
  12. "@babel/core": "^7.15.8",
  13. "@babel/eslint-parser": "^7.15.8",
  14. "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
  15. "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
  16. "@babel/plugin-syntax-flow": "^7.16.0",
  17. "@typescript-eslint/parser": "^5.2.0",
  18. "eslint": "^8.1.0",
  19. "mocha": "^9.2.0",
  20. "nyc": "^15.1.0",
  21. "typescript": "^3.9.7"
  22. },
  23. "peerDependencies": {
  24. "eslint": "^6 || ^7 || ^8"
  25. },
  26. "homepage": "https://github.com/mozilla/eslint-plugin-no-unsanitized/",
  27. "keywords": [
  28. "eslint",
  29. "eslint-plugin",
  30. "eslintplugin",
  31. "lint",
  32. "sanitize",
  33. "innerHTML",
  34. "security"
  35. ],
  36. "license": "MPL-2.0",
  37. "main": "index.js",
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/mozilla/eslint-plugin-no-unsanitized/issues"
  41. },
  42. "scripts": {
  43. "test": "nyc mocha tests/rules/",
  44. "lint": "eslint ."
  45. },
  46. "files": [
  47. "LICENSE",
  48. "README.md",
  49. "SCHEMA.md",
  50. "SECURITY.md",
  51. "docs",
  52. "index.js",
  53. "lib"
  54. ]
  55. }