Skip to content

Commit

Permalink
update pkg.json 🎗 ..
Browse files Browse the repository at this point in the history
  • Loading branch information
3imed-jaberi committed May 6, 2020
1 parent 0b788e2 commit 44a5fa6
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"name": "koa-qs",
"description": "qs for koa",
"version": "2.0.0",
"files": [
"index.js"
],
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
Expand All @@ -11,27 +14,27 @@
"license": "MIT",
"repository": "koajs/qs",
"dependencies": {
"merge-descriptors": "~0.0.2",
"qs": "~2.3.3"
"merge-descriptors": "^1.0.1",
"qs": "^6.9.4"
},
"devDependencies": {
"istanbul-harmony": "*",
"koa": "0",
"mocha": "2",
"should": "3",
"supertest": "0",
"urllib": "2"
"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"
},
"scripts": {
"test": "NODE_ENV=test mocha --harmony --require should --reporter spec",
"test-cov": "NODE_ENV=test node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
"test-travis": "NODE_ENV=test node --harmony ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
"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": ">= 0.11",
"iojs": ">= 1.0.0"
},
"files": [
"index.js"
]
}
"node": ">= 8"
}
}

0 comments on commit 44a5fa6

Please sign in to comment.