-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.92 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
{
"name": "tonion",
"version": "0.0.1",
"description": "Web application framework for TypeScript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"doc": "typedoc ./src",
"test": "mocha",
"test:cover": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"src/application/delegate.ts",
"src/request/delegate.ts",
"src/response/delegate.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text"
],
"sourceMap": true,
"all": true
},
"engines": {
"node": ">= 10.12.0"
},
"directories": {
"lib": "./lib",
"example": "./example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rosylilly/tonion.git"
},
"keywords": [
"http",
"web",
"app",
"application",
"framework",
"typescript"
],
"author": "Sho Kusano <rosylilly@aduca.org> (https://github.com/rosylilly)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rosylilly/tonion/issues"
},
"homepage": "https://github.com/rosylilly/tonion#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"@types/supertest": "^2.0.6",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"supertest": "^3.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.4"
},
"dependencies": {
"@types/http-errors": "^1.6.1",
"@types/mime-types": "^2.1.0",
"@types/on-finished": "^2.3.1",
"@types/statuses": "^1.3.0",
"http-errors": "^1.6.1",
"mime-types": "^2.1.0",
"on-finished": "^2.3.0",
"statuses": "^1.5.0"
}
}