Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Commit

Permalink
better pkg.json 🎗 ..
Browse files Browse the repository at this point in the history
  • Loading branch information
3imed-jaberi committed Jul 15, 2020
1 parent dc982a1 commit a1b73a0
Showing 1 changed file with 45 additions and 19 deletions.
64 changes: 45 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,64 @@
{
"name": "koa-convert",
"version": "1.2.0",
"keywords": [
"koa",
"middleware",
"convert"
"description": "convert modern Koa legacy generator-based middleware to promise-based middleware",
"main": "index.js",
"files": [
"index.js"
],
"description": "convert koa legacy generator-based middleware to promise-based middleware",
"repository": {
"type": "git",
"url": "git+https://github.com/gyson/koa-convert.git"
},
"main": "index.js",
"standard": {
"ignore": [
"index.spec.js"
]
},
"scripts": {
"test": "standard && mocha test.js"
"lint": "standard",
"pretest": "npm run lint",
"test": "mocha index.spec.js --exit",
"precoverage": "rimraf .nyc_output coverage",
"coverage": "nyc npm run test",
"ci": "npm run coverage"
},
"keywords": [
"koa",
"middleware",
"convert",
"back",
"generator",
"promise",
"generator-based-middleware",
"promise-based-middleware",
"support"
],
"author": "gyson <[email protected]>",
"contributors": [
"gyson <[email protected]>",
"Lloyd Brookes <[email protected]>",
"Imed Jaberi <[email protected]> (https://www.3imed-jaberi.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gyson/koa-convert/issues"
},
"homepage": "https://github.com/gyson/koa-convert#readme",
"dependencies": {
"co": "^4.6.0",
"koa-compose": "^3.0.0"
"koa-compose": "^4.1.0"
},
"devDependencies": {
"koa": "^2.0.0-alpha.2",
"koa-v1": "^1.0.0",
"mocha": "^2.3.3",
"standard": "^5.3.1",
"supertest": "^1.1.0"
"koa": "^2.13.0",
"koa-v1": "npm:[email protected]",
"mocha": "^7.1.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"standard": "^14.3.4",
"supertest": "^4.0.2"
},
"engines": {
"node": ">= 4"
}
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/gyson/koa-convert/issues"
},
"homepage": "https://github.com/gyson/koa-convert#readme"
}

0 comments on commit a1b73a0

Please sign in to comment.