CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json57 linesDownload Raw Back to fast-querystring
1{2  "name": "fast-querystring",3  "version": "1.1.2",4  "description": "A fast alternative to legacy querystring module",5  "main": "./lib/index.js",6  "types": "./lib/index.d.ts",7  "scripts": {8    "format": "rome format . --write",9    "format:ci": "rome ci .",10    "test": "vitest",11    "test:environment:edge": "vitest --environment=edge-runtime",12    "test:environment:browser": "vitest --environment=jsdom",13    "test:watch": "vitest --watch",14    "test:coverage": "vitest --coverage",15    "coverage": "vitest run --coverage",16    "benchmark": "node benchmark/bench.js",17    "benchmark:cmp-branch": "node benchmark/bench-cmp-branch.js",18    "benchmark:parse": "node benchmark/parse.mjs",19    "benchmark:stringify": "node benchmark/stringify.mjs",20    "benchmark:import": "node benchmark/import.mjs"21  },22  "keywords": [23    "querystring",24    "qs",25    "parser"26  ],27  "author": "Yagiz Nizipli <yagiz@nizipli.com>",28  "license": "MIT",29  "devDependencies": {30    "@aws-sdk/querystring-builder": "^3.342.0",31    "@aws-sdk/querystring-parser": "^3.342.0",32    "@edge-runtime/vm": "^3.0.1",33    "@types/node": "^20.2.5",34    "@vitest/coverage-c8": "^0.31.4",35    "benchmark": "^2.1.4",36    "cli-select": "^1.1.2",37    "cronometro": "^1.1.5",38    "http-querystring-stringify": "^2.1.0",39    "jsdom": "^22.1.0",40    "qs": "^6.11.2",41    "query-string": "^8.1.0",42    "querystringify": "^2.2.0",43    "querystringify-ts": "^0.1.5",44    "querystringparser": "^0.1.1",45    "rome": "12.1.3",46    "simple-git": "^3.19.0",47    "vitest": "^0.31.4"48  },49  "repository": {50    "url": "git+https://github.com/anonrig/fast-querystring.git",51    "type": "git"52  },53  "dependencies": {54    "fast-decode-uri-component": "^1.0.1"55  }56}57