1{ 2 "name": "balanced-match", 3 "description": "Match balanced character pairs, like \"{\" and \"}\"", 4 "version": "1.0.2", 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": "tape test/test.js", 13 "bench": "matcha test/bench.js" 14 }, 15 "devDependencies": { 16 "matcha": "^0.7.0", 17 "tape": "^4.6.0" 18 }, 19 "keywords": [ 20 "match", 21 "regexp", 22 "test", 23 "balanced", 24 "parse" 25 ], 26 "author": { 27 "name": "Julian Gruber", 28 "email": "mail@juliangruber.com", 29 "url": "http://juliangruber.com" 30 }, 31 "license": "MIT", 32 "testling": { 33 "files": "test/*.js", 34 "browsers": [ 35 "ie/8..latest", 36 "firefox/20..latest", 37 "firefox/nightly", 38 "chrome/25..latest", 39 "chrome/canary", 40 "opera/12..latest", 41 "opera/next", 42 "safari/5.1..latest", 43 "ipad/6.0..latest", 44 "iphone/6.0..latest", 45 "android-browser/4.2..latest" 46 ] 47 } 48} 49