opusdev/vector-similarity-api
1
1{2 "name": "qs",3 "description": "A querystring parser that supports nesting and arrays, with a depth limit",4 "homepage": "https://github.com/ljharb/qs",5 "version": "6.14.1",6 "repository": {7 "type": "git",8 "url": "https://github.com/ljharb/qs.git"9 },10 "funding": {11 "url": "https://github.com/sponsors/ljharb"12 },13 "main": "lib/index.js",14 "sideEffects": false,15 "contributors": [16 {17 "name": "Jordan Harband",18 "email": "ljharb@gmail.com",19 "url": "http://ljharb.codes"20 }21 ],22 "keywords": [23 "querystring",24 "qs",25 "query",26 "url",27 "parse",28 "stringify"29 ],30 "engines": {31 "node": ">=0.6"32 },33 "dependencies": {34 "side-channel": "^1.1.0"35 },36 "devDependencies": {37 "@browserify/envify": "^6.0.0",38 "@browserify/uglifyify": "^6.0.0",39 "@ljharb/eslint-config": "^22.1.3",40 "browserify": "^16.5.2",41 "bundle-collapser": "^1.4.0",42 "common-shakeify": "~1.0.0",43 "eclint": "^2.8.1",44 "es-value-fixtures": "^1.7.1",45 "eslint": "^9.39.2",46 "evalmd": "^0.0.19",47 "for-each": "^0.3.5",48 "glob": "=10.3.7",49 "has-bigints": "^1.1.0",50 "has-override-mistake": "^1.0.1",51 "has-property-descriptors": "^1.0.2",52 "has-proto": "^1.2.0",53 "has-symbols": "^1.1.0",54 "iconv-lite": "^0.5.1",55 "in-publish": "^2.0.1",56 "jackspeak": "=2.1.1",57 "jiti": "^0.0.0",58 "mkdirp": "^0.5.5",59 "mock-property": "^1.1.0",60 "module-deps": "^6.2.3",61 "npmignore": "^0.3.5",62 "nyc": "^10.3.2",63 "object-inspect": "^1.13.4",64 "qs-iconv": "^1.0.4",65 "safe-publish-latest": "^2.0.0",66 "safer-buffer": "^2.1.2",67 "tape": "^5.9.0",68 "unassertify": "^3.0.1"69 },70 "scripts": {71 "prepack": "npmignore --auto --commentLines=autogenerated && npm run dist",72 "prepublishOnly": "safe-publish-latest",73 "prepublish": "not-in-publish || npm run prepublishOnly",74 "pretest": "npm run --silent readme && npm run --silent lint",75 "test": "npm run tests-only",76 "tests-only": "nyc tape 'test/**/*.js'",77 "posttest": "npx npm@'>=10.2' audit --production",78 "readme": "evalmd README.md",79 "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",80 "lint": "eslint .",81 "dist": "mkdirp dist && browserify --standalone Qs -g unassertify -g @browserify/envify -g [@browserify/uglifyify --mangle.keep_fnames --compress.keep_fnames --format.indent_level=1 --compress.arrows=false --compress.passes=4 --compress.typeofs=false] -p common-shakeify -p bundle-collapser/plugin lib/index.js > dist/qs.js"82 },83 "license": "BSD-3-Clause",84 "publishConfig": {85 "ignore": [86 "!dist/*",87 "bower.json",88 "component.json",89 ".github/workflows",90 "logos",91 "tea.yaml"92 ]93 }94}95 