-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.09 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
{
"name": "koa-butterfly",
"version": "0.1.2",
"description": "A feature packed Koa router.",
"homepage": "https://github.com/opl-/koa-butterfly#readme",
"bugs": {
"url" : "https://github.com/opl-/koa-butterfly/issues"
},
"repository": {
"type" : "git",
"url" : "https://github.com/opl-/koa-butterfly.git"
},
"keywords": [
"koa",
"router",
"middleware",
"typescript",
"koa-router"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "nyc --report=lcov ava",
"prepublishOnly": "npm test && npm run build"
},
"author": "opl",
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"@types/koa": "^2.11.4",
"@types/koa-compose": "^3.2.5",
"koa-compose": "^4.1.0"
},
"devDependencies": {
"ava": "^3.12.1",
"koa": "^2.13.0",
"nyc": "^15.1.0",
"typescript": "~4.0.2",
"ts-node": "^9.0.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}