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 27
/
package.json
92 lines (92 loc) · 2.08 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "koala",
"description": "Koa Framework Suite",
"version": "1.0.0",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": "koajs/koala",
"dependencies": {
"ajv": "^5.0.0",
"basic-auth": "^2.0.0",
"commander": "^2.15.1",
"debug": "^3.1.0",
"delegates": "1.0.0",
"koa": "2.5.1",
"koa-body-parsers": "^3.1.0",
"koa-bodyparser": "^4.2.0",
"koa-cash": "^2.2.0",
"koa-compress": "^3.0.0",
"koa-conditional-get": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-csrf": "^3.0.6",
"koa-error": "^3.2.0",
"koa-etag": "^3.0.0",
"koa-file-server": "2",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-pug": "^3.0.0-2",
"koa-qs": "^3.0.0",
"koa-response-time": "^2.0.0",
"koa-safe-jsonp": "0",
"koa-session": "^5.8.1",
"koa-trace": "1",
"merge-descriptors": "^1.0.0",
"ms": "^2.1.1",
"mz": "^2.7.0",
"qs": "^6.5.3",
"request": "^2.88.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-koa": "^2.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.3",
"npm-run-all": "^4.1.1",
"snyk": "^1.108.2",
"supertest": "^3.0.0"
},
"engines": {
"node": ">= 8.0.0"
},
"main": "lib",
"files": [
"lib",
"bin",
"docs",
"template"
],
"scripts": {
"test": "jest --forceExit",
"coverage": "npm run test -- --coverage",
"validate": "npm-run-all lint coverage",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"lint": "eslint . bin/koala"
},
"keywords": [
"koa",
"http",
"https",
"http2",
"framework",
"generators",
"es6",
"modules",
"promises",
"push"
],
"snyk": true,
"jest": {
"testURL": "https://koala.com"
}
}