UNPKG

1.23 kBJSONView Raw
1{
2 "name": "balanced-match",
3 "description": "Match balanced character pairs, like \"{\" and \"}\"",
4 "version": "3.0.1",
5 "repository": {
6 "type": "git",
7 "url": "git://github.com/juliangruber/balanced-match.git"
8 },
9 "homepage": "https://github.com/juliangruber/balanced-match",
10 "exports": "./index.js",
11 "type": "module",
12 "scripts": {
13 "test": "standard --fix && node--test test/test.js",
14 "bench": "matcha test/bench.js",
15 "release": "np"
16 },
17 "devDependencies": {
18 "@c4312/matcha": "^1.3.1",
19 "np": "^8.0.4",
20 "standard": "^17.1.0",
21 "test": "^3.3.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 "engines": {
53 "node": ">= 16"
54 }
55}