This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc982a1
commit a1b73a0
Showing
1 changed file
with
45 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |