Skip to content

Commit

Permalink
chore: fixpack
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed May 27, 2020
1 parent 8dc4c48 commit fdb0cf9
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "koa-qs",
"description": "qs for koa",
"version": "2.0.0",
"files": [
"index.js"
],
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
Expand All @@ -23,8 +20,6 @@
"url": "https://www.3imed-jaberi.com/"
}
],
"license": "MIT",
"repository": "koajs/qs",
"dependencies": {
"merge-descriptors": "^1.0.1",
"qs": "^6.9.4"
Expand All @@ -39,14 +34,19 @@
"supertest": "^4.0.2",
"urllib": "^2.34.2"
},
"scripts": {
"test": "mocha",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"postcoverage":"nyc report",
"ci": "npm run coverage"
},
"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"
}
}
}

0 comments on commit fdb0cf9

Please sign in to comment.