-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 KB
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
51
52
53
54
55
56
57
{
"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": "rome format . --write",
"format:ci": "rome ci .",
"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": "node benchmark/bench.js",
"benchmark:cmp-branch": "node benchmark/bench-cmp-branch.js",
"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 <yagiz@nizipli.com>",
"license": "MIT",
"devDependencies": {
"@aws-sdk/querystring-builder": "^3.357.0",
"@aws-sdk/querystring-parser": "^3.357.0",
"@edge-runtime/vm": "^3.0.3",
"@types/node": "^20.4.1",
"@vitest/coverage-v8": "^0.34.1",
"benchmark": "^2.1.4",
"cli-select": "^1.1.2",
"cronometro": "^3.0.2",
"http-querystring-stringify": "^2.1.0",
"jsdom": "^24.0.0",
"qs": "^6.11.2",
"query-string": "^9.0.0",
"querystringify": "^2.2.0",
"querystringify-ts": "^0.1.5",
"querystringparser": "^0.1.1",
"rome": "12.1.3",
"simple-git": "^3.19.1",
"vitest": "^0.34.1"
},
"repository": {
"url": "git+https://github.com/anonrig/fast-querystring.git",
"type": "git"
},
"dependencies": {
"fast-decode-uri-component": "^1.0.1"
}
}