CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
package.json51 linesDownload Raw Back to brace-expansion
1{2  "name": "brace-expansion",3  "description": "Brace expansion as known from sh/bash",4  "version": "1.1.12",5  "repository": {6    "type": "git",7    "url": "git://github.com/juliangruber/brace-expansion.git"8  },9  "homepage": "https://github.com/juliangruber/brace-expansion",10  "main": "index.js",11  "scripts": {12    "test": "tape test/*.js",13    "gentest": "bash test/generate.sh",14    "bench": "matcha test/perf/bench.js"15  },16  "dependencies": {17    "balanced-match": "^1.0.0",18    "concat-map": "0.0.1"19  },20  "devDependencies": {21    "matcha": "^0.7.0",22    "tape": "^4.6.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  "publishConfig": {48    "tag": "1.x"49  }50}51