-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "fast-querystring",
"version": "1.1.2",
"description": "A fast alternative to legacy querystring module",
"main": "./lib/index.js",
"type": "commonjs",
"types": "./lib/index.d.ts",
"scripts": {
"format": "biome check . --write",
"test": "vitest",
"test:environment:edge": "vitest --environment=edge-runtime",
"test:environment:browser": "vitest --environment=jsdom",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"coverage": "vitest run --coverage",
"benchmark:parse": "node benchmark/parse.mjs",
"benchmark:stringify": "node benchmark/stringify.mjs",
"benchmark:import": "node benchmark/import.mjs"
},
"keywords": ["querystring", "qs", "parser"],
"author": "Yagiz Nizipli <[email protected]>",
"license": "MIT",
"devDependencies": {
"@aws-sdk/querystring-builder": "^3.370.0",
"@aws-sdk/querystring-parser": "^3.370.0",
"@biomejs/biome": "1.8.3",
"@edge-runtime/vm": "^4.0.0",
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.1",
"benchmark": "^2.1.4",
"cli-select": "^1.1.2",
"cronometro": "^3.0.2",
"http-querystring-stringify": "^2.1.0",
"jsdom": "^24.1.0",
"qs": "^6.12.3",
"query-string": "^9.0.0",
"querystringify": "^2.2.0",
"querystringify-ts": "^0.1.5",
"querystringparser": "^0.1.1",
"simple-git": "^3.25.0",
"vitest": "^2.0.1"
},
"repository": {
"url": "git+https://github.com/anonrig/fast-querystring.git",
"type": "git"
},
"dependencies": {
"fast-decode-uri-component": "^1.0.1"
}
}