You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
{
|
|
"name": "fast-querystring",
|
|
"version": "1.0.0",
|
|
"description": "A fast alternative to legacy querystring module",
|
|
"main": "lib/index.js",
|
|
"type": "commonjs",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"format": "rome format . --write",
|
|
"format:ci": "rome ci .",
|
|
"test": "vitest",
|
|
"test:watch": "vitest --watch",
|
|
"test:coverage": "vitest --coverage",
|
|
"coverage": "vitest run --coverage",
|
|
"benchmark:parse": "node benchmark/parse.mjs",
|
|
"benchmark:stringify": "node benchmark/stringify.mjs"
|
|
},
|
|
"keywords": [
|
|
"querystring",
|
|
"qs",
|
|
"parser"
|
|
],
|
|
"author": "Yagiz Nizipli <yagiz@nizipli.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@aws-sdk/querystring-builder": "^3.162.0",
|
|
"@aws-sdk/querystring-parser": "^3.162.0",
|
|
"@types/node": "^18.7.15",
|
|
"@vitest/coverage-c8": "^0.23.1",
|
|
"cronometro": "^1.1.2",
|
|
"http-querystring-stringify": "^2.1.0",
|
|
"qs": "^6.11.0",
|
|
"query-string": "^7.1.1",
|
|
"querystringify": "^2.2.0",
|
|
"querystringparser": "^0.1.1",
|
|
"rome": "0.9.1-next",
|
|
"vitest": "^0.23.1"
|
|
},
|
|
"repository": {
|
|
"url": "git+https://github.com/anonrig/fast-querystring.git",
|
|
"type": "git"
|
|
},
|
|
"dependencies": {
|
|
"fast-decode-uri-component": "^1.0.1"
|
|
}
|
|
}
|