package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "balanced-match",
  3. "description": "Match balanced character pairs, like \"{\" and \"}\"",
  4. "version": "2.0.0",
  5. "repository": {
  6. "type": "git",
  7. "url": "git://github.com/juliangruber/balanced-match.git"
  8. },
  9. "homepage": "https://github.com/juliangruber/balanced-match",
  10. "main": "index.js",
  11. "scripts": {
  12. "test": "prettier-standard && standard && tape test/test.js",
  13. "bench": "matcha test/bench.js",
  14. "release": "np"
  15. },
  16. "devDependencies": {
  17. "@c4312/matcha": "^1.3.1",
  18. "np": "^7.4.0",
  19. "prettier-standard": "^16.4.1",
  20. "standard": "^16.0.3",
  21. "tape": "^4.6.0"
  22. },
  23. "keywords": [
  24. "match",
  25. "regexp",
  26. "test",
  27. "balanced",
  28. "parse"
  29. ],
  30. "author": {
  31. "name": "Julian Gruber",
  32. "email": "mail@juliangruber.com",
  33. "url": "http://juliangruber.com"
  34. },
  35. "license": "MIT",
  36. "testling": {
  37. "files": "test/*.js",
  38. "browsers": [
  39. "ie/8..latest",
  40. "firefox/20..latest",
  41. "firefox/nightly",
  42. "chrome/25..latest",
  43. "chrome/canary",
  44. "opera/12..latest",
  45. "opera/next",
  46. "safari/5.1..latest",
  47. "ipad/6.0..latest",
  48. "iphone/6.0..latest",
  49. "android-browser/4.2..latest"
  50. ]
  51. }
  52. }