package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "eslint-plugin-mozilla",
  3. "version": "3.0.1",
  4. "description": "A collection of rules that help enforce JavaScript coding standard in the Mozilla project.",
  5. "keywords": [
  6. "eslint",
  7. "eslintplugin",
  8. "eslint-plugin",
  9. "mozilla",
  10. "firefox"
  11. ],
  12. "bugs": {
  13. "url": "https://bugzilla.mozilla.org/enter_bug.cgi?product=Testing&component=Lint"
  14. },
  15. "homepage": "http://firefox-source-docs.mozilla.org/tools/lint/linters/eslint-plugin-mozilla.html",
  16. "repository": {
  17. "type": "hg",
  18. "url": "https://hg.mozilla.org/mozilla-central/"
  19. },
  20. "author": "Mike Ratcliffe",
  21. "main": "lib/index.js",
  22. "dependencies": {
  23. "@babel/core": "^7.19.1",
  24. "@babel/eslint-parser": "^7.19.1",
  25. "eslint-scope": "^7.1.1",
  26. "eslint-visitor-keys": "^3.3.0",
  27. "estraverse": "^5.3.0",
  28. "htmlparser2": "^8.0.1",
  29. "multi-ini": "^2.2.0"
  30. },
  31. "devDependencies": {
  32. "eslint": "8.24.0",
  33. "mocha": "10.0.0"
  34. },
  35. "peerDependencies": {
  36. "@microsoft/eslint-plugin-sdl": "github:mozfreddyb/eslint-plugin-sdl#17b22cd527682108af7a1a4edacf69cb7a9b4a06",
  37. "eslint": "^7.23.0 || ^8.0.0",
  38. "eslint-config-prettier": "^8.0.0",
  39. "eslint-plugin-fetch-options": "^0.0.5",
  40. "eslint-plugin-html": "^7.0.0",
  41. "eslint-plugin-no-unsanitized": "^4.0.0",
  42. "eslint-plugin-prettier": "^3.0.0",
  43. "prettier": "^1.19.1"
  44. },
  45. "engines": {
  46. "node": ">=14.0.0"
  47. },
  48. "scripts": {
  49. "prepack": "node scripts/createExports.js",
  50. "test": "mocha --reporter 'reporters/mozilla-format.js' tests",
  51. "postpublish": "rm -f lib/environments/saved-globals.json lib/rules/saved-rules-data.json",
  52. "update-tooltool": "./update.sh"
  53. },
  54. "license": "MPL-2.0"
  55. }