package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@microsoft/eslint-plugin-sdl",
  3. "version": "0.2.1",
  4. "description": "ESLint plugin focused on common security issues and misconfigurations discoverable during static testing as part of Microsoft Security Development Lifecycle (SDL)",
  5. "keywords": [
  6. "eslint",
  7. "eslintplugin",
  8. "eslint-plugin",
  9. "sdl"
  10. ],
  11. "author": "Microsoft",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/microsoft/eslint-plugin-sdl"
  15. },
  16. "homepage": "https://github.com/microsoft/eslint-plugin-sdl",
  17. "bugs": "https://github.com/microsoft/eslint-plugin-sdl/issues",
  18. "main": "lib/index.js",
  19. "scripts": {
  20. "test": "mocha tests --recursive"
  21. },
  22. "dependencies": {
  23. "eslint-plugin-node": "11.1.0",
  24. "eslint-plugin-security": "1.4.0",
  25. "eslint-plugin-react": "7.24.0"
  26. },
  27. "devDependencies": {
  28. "@typescript-eslint/eslint-plugin": "^3.7.0",
  29. "@typescript-eslint/parser": "^3.7.0",
  30. "eslint": "^7.32.0",
  31. "mocha": "^8.3.2",
  32. "typescript": "^3.9.7"
  33. },
  34. "engines": {
  35. "node": ">=0.10.0"
  36. },
  37. "license": "MIT"
  38. }