You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
823 B
39 lines
823 B
1 month ago
|
{
|
||
|
"name": "koa2-connect",
|
||
|
"version": "1.0.2",
|
||
|
"description": "Use Connect/Express middleware in Koa2",
|
||
|
"repository": "https://github.com/cyrilluce/koa2-connect",
|
||
|
"main": "dist/index.js",
|
||
|
"author": "cyrilluce <cyrilluce@gmail.com>",
|
||
|
"contributors": [
|
||
|
"Louis DeScioli <louis.descioli@gmail.com>",
|
||
|
"cyrilluce <cyrilluce@gmail.com>"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"test": "mocha test/index.js",
|
||
|
"test:watch": "npm run test -- --watch --reporter nyan",
|
||
|
"build" : "tsc"
|
||
|
},
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"ts",
|
||
|
"README.md"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=4"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"koa": "^2.0.0",
|
||
|
"mocha": "^2.3.4",
|
||
|
"supertest": "^1.1.0",
|
||
|
"typescript": "^2.1.5"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"koa",
|
||
|
"koa2",
|
||
|
"connect",
|
||
|
"express",
|
||
|
"middleware"
|
||
|
]
|
||
|
}
|