-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 895 Bytes
/
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
{
"name": "faster-qs",
"version": "0.2.4",
"description": "Fast query string parser and has most features of `qs`",
"type": "module",
"main": "index.mjs",
"scripts": {
"test": "npx mocha __tests__",
"bench": "node benchmark/index.mjs",
"bench-node": "node benchmark/node.mjs",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hans00/faster-qs.git"
},
"keywords": [
"qs",
"querystring",
"parse",
"parser"
],
"author": "Hans <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hans00/faster-qs/issues"
},
"homepage": "https://github.com/hans00/faster-qs#readme",
"dependencies": {
"fast-querystring": "^1.1.2"
},
"devDependencies": {
"chai": "^4.3.7",
"mitata": "^0.1.6",
"mocha": "^10.2.0",
"qs": "^6.11.2"
}
}