examples/package.json
Kevin Rambaud fc7f25a73f Fix mocha version and unit tests (#117)
* Remove duplicate supertest dependency

* Fix mocha version

* Add an after statement to close koa app instance after running tests
2018-01-24 19:10:06 +08:00

40 lines
957 B
JSON

{
"name": "koa-examples",
"description": "Examples using Koa",
"version": "0.0.1",
"repository": "https://github.com/koajs/examples",
"bugs": "https://github.com/koajs/examples/issues",
"dependencies": {
"ejs": "^2.5.6",
"fs-promise": "^2.0.3",
"koa": "^2.2.0",
"koa-basic-auth": "^2.0.0",
"koa-body": "^2.0.1",
"koa-compose": "^4.0.0",
"koa-csrf": "^3.0.6",
"koa-logger": "^3.0.0",
"koa-router": "^7.2.0",
"koa-session": "^5.0.0",
"koa-static": "^3.0.0",
"koa-views": "^6.0.2",
"streaming-json-stringify": "^3.1.0",
"swig": "^1.4.2"
},
"devDependencies": {
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^5.0.0",
"should": "^3.3.2",
"supertest": "^3.0.0"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 7.6"
},
"license": "MIT"
}