package.json 883 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "safe-regex",
  3. "version": "1.1.0",
  4. "description": "detect possibly catastrophic, exponential-time regular expressions",
  5. "main": "index.js",
  6. "dependencies": {
  7. "ret": "~0.1.10"
  8. },
  9. "devDependencies": {
  10. "tape": "^3.5.0"
  11. },
  12. "scripts": {
  13. "test": "tape test/*.js"
  14. },
  15. "testling": {
  16. "files": "test/*.js",
  17. "browsers": [
  18. "ie/8", "ie/9", "ie/10",
  19. "firefox/latest",
  20. "chrome/latest",
  21. "opera/latest",
  22. "safari/latest"
  23. ]
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/substack/safe-regex.git"
  28. },
  29. "homepage": "https://github.com/substack/safe-regex",
  30. "keywords": [
  31. "catastrophic",
  32. "exponential",
  33. "regex",
  34. "safe",
  35. "sandbox"
  36. ],
  37. "author": {
  38. "name": "James Halliday",
  39. "email": "mail@substack.net",
  40. "url": "http://substack.net"
  41. },
  42. "license": "MIT"
  43. }