-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 KB
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
{
"name": "dolo",
"version": "0.0.1",
"description": "A koa-like web framework",
"main": "lib/application.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "jest",
"test-cov": "jest --coverage --runInBand --forceExit",
"lint": "eslint benchmarks lib test",
"bench": "make -C benchmarks",
"authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/initial-wu/dolo.git"
},
"keywords": [
"web",
"framework",
"middlewarre",
"koa"
],
"author": "initial-wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/initial-wu/dolo/issues"
},
"homepage": "https://github.com/initial-wu/dolo#readme",
"dependencies": {
"accepts": "^1.3.5",
"content-disposition": "^0.5.2",
"content-type": "^1.0.4",
"cookies": "^0.7.1",
"debug": "^3.1.0",
"destroy": "^1.0.4",
"error-inject": "^1.0.0",
"escape-html": "^1.0.3",
"fresh": "^0.5.2",
"koa-compose": "^4.1.0",
"koa-is-json": "^1.0.0",
"mime-types": "^2.1.18",
"on-finished": "^2.3.0",
"only": "0.0.2",
"parseurl": "^1.3.2",
"querystring": "^0.2.0",
"statuses": "^1.5.0",
"type-is": "^1.6.16",
"vary": "^1.1.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-koa": "^2.0.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
},
"engines": {
"node": "^6.10.1 || ^7.10.1 || >= 8.1.4"
}
}