1 | {
|
2 | "name": "brace-expansion",
|
3 | "description": "Brace expansion as known from sh/bash",
|
4 | "version": "4.0.0",
|
5 | "repository": {
|
6 | "type": "git",
|
7 | "url": "git://github.com/juliangruber/brace-expansion.git"
|
8 | },
|
9 | "homepage": "https://github.com/juliangruber/brace-expansion",
|
10 | "exports": "./index.js",
|
11 | "type": "module",
|
12 | "scripts": {
|
13 | "test": "standard --fix && node --test",
|
14 | "gentest": "bash test/generate.sh",
|
15 | "bench": "matcha bench/bench.js"
|
16 | },
|
17 | "dependencies": {
|
18 | "balanced-match": "^3.0.0"
|
19 | },
|
20 | "devDependencies": {
|
21 | "@c4312/matcha": "^1.3.1",
|
22 | "standard": "^17.1.0"
|
23 | },
|
24 | "keywords": [],
|
25 | "author": {
|
26 | "name": "Julian Gruber",
|
27 | "email": "mail@juliangruber.com",
|
28 | "url": "http://juliangruber.com"
|
29 | },
|
30 | "license": "MIT",
|
31 | "testling": {
|
32 | "files": "test/*.js",
|
33 | "browsers": [
|
34 | "ie/8..latest",
|
35 | "firefox/20..latest",
|
36 | "firefox/nightly",
|
37 | "chrome/25..latest",
|
38 | "chrome/canary",
|
39 | "opera/12..latest",
|
40 | "opera/next",
|
41 | "safari/5.1..latest",
|
42 | "ipad/6.0..latest",
|
43 | "iphone/6.0..latest",
|
44 | "android-browser/4.2..latest"
|
45 | ]
|
46 | },
|
47 | "engines": {
|
48 | "node": ">= 18"
|
49 | }
|
50 | }
|