This repository has been archived by the owner on Jun 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 1.69 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
{
"name": "toa",
"description": "A pithy and powerful web framework.",
"authors": [
"Yan Qing <[email protected]>"
],
"version": "3.3.0",
"main": "lib/application.js",
"typings": "index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:toajs/toa.git"
},
"homepage": "https://github.com/toajs/toa",
"engines": {
"node": ">= 8"
},
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"thunk",
"thunks",
"yield",
"generator"
],
"dependencies": {
"accepts": "~1.3.7",
"content-disposition": "~0.5.3",
"content-type": "~1.0.4",
"cookies": "~0.8.0",
"delegates": "~1.0.0",
"destroy": "~1.0.4",
"escape-html": "~1.0.3",
"fresh": "~0.5.2",
"http-errors": "~1.7.3",
"mime-types": "~2.1.26",
"parseurl": "~1.3.3",
"statuses": "~1.5.0",
"thunks": "^4.9.6",
"type-is": "~1.6.18",
"vary": "~1.1.2"
},
"devDependencies": {
"@types/node": "^13.9.3",
"ilog": "^1.2.3",
"istanbul": "^0.4.5",
"koa": "^2.11.0",
"minimist": "^1.2.5",
"standard": "^14.3.3",
"supertest": "^4.0.2",
"test-console": "^1.1.0",
"through2": "^3.0.1",
"tman": "^1.10.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3"
},
"scripts": {
"test": "standard && tman -R dot 'test/**/*.js'",
"test-cov": "istanbul cover _tman -R dot 'test/**/*.js'",
"test-typings": "tman -r ts-node/register test/typings.test.ts",
"guide": "node guide.js",
"bench": "cd bench && make"
},
"files": [
"lib",
"index.d.ts",
"README.md",
"CHANGELOG.md"
]
}