-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "koa-qs",
"description": "qs for koa",
"version": "3.0.0",
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"contributors": [
{
"name": "Nick Baugh",
"email": "[email protected]",
"url": "http://niftylettuce.com/"
},
{
"name": "Imed Jaberi",
"email": "[email protected]",
"url": "https://www.3imed-jaberi.com/"
}
],
"dependencies": {
"merge-descriptors": "^1.0.1",
"qs": "^6.9.4"
},
"devDependencies": {
"koa": "^2.11.0",
"koa-convert": "^1.2.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"should": "^13.2.3",
"supertest": "^4.0.2",
"urllib": "^2.34.2"
},
"engines": {
"node": ">= 8"
},
"files": [
"index.js"
],
"license": "MIT",
"repository": "koajs/qs",
"scripts": {
"ci": "npm run coverage",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"postcoverage": "nyc report",
"precoverage": "rimraf .nyc_output coverage",
"test": "mocha"
}
}