forked from koajs/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"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": {
"@koa/cors": "^3.0.0",
"ejs": "^2.5.6",
"fs-promise": "^2.0.3",
"koa": "^2.7.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",
"source-map": "^0.7.3",
"streaming-json-stringify": "^3.1.0",
"supertest": "^3.0.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": "*",
"should": "^3.3.2",
"supertest": "*"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 7.6"
},
"license": "MIT"
}