-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.53 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
51
52
53
54
55
{
"name": "query-strings-parser",
"version": "2.1.13",
"description": "Middleware to transform query strings in a format that is recognized by the MongoDB, MySQL and other databases...",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "nyc --clean --all --reporter=text-summary mocha test/**/*.spec.js",
"test:unit": "nyc --clean --all --reporter=text-summary mocha test/unit/*.spec.js",
"test:integration": "nyc --clean --all --reporter=text-summary mocha test/integration/*.spec.js",
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha test/**/*.spec.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/nutes-uepb/query-strings-parser"
},
"author": "Lucas Rocha <[email protected]>",
"contributors": [
"Adson Macêdo <[email protected]>",
"Douglas Rafael <[email protected]>",
"Jefferson Sampaio <[email protected]>",
"João Pedro Miranda <[email protected]>",
"Lucas Barbosa <[email protected]>"
],
"keywords": [
"middleware",
"query",
"query-string",
"querystring",
"querystrings",
"qs",
"parser",
"stringfy",
"encode",
"decode",
"searchparams",
"url",
"string"
],
"engines": {
"node": ">=8"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.3.6",
"express": "^4.18.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"supertest": "^6.2.3"
}
}