-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "yawk",
"version": "0.9.1",
"description": "Yet Another Wrapper for Koa",
"main": "dist/index.js",
"scripts": {
"build": "tsc && [ -d ./dist/bin ] && chmod -f +x ./dist/bin/* || exit 0",
"clean": "rm -rf ./dist",
"lint": "tslint -t stylish './src/**/*.ts' || exit 0",
"lint:verbose": "tslint -t codeFrame './src/**/*.ts' || exit 0",
"prepublish": "npm run build",
"watch": "tsc -w"
},
"keywords": [
"koa",
"wrapper",
"router",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rosshadden/yawk.git"
},
"author": "Ross Hadden",
"license": "ISC",
"dependencies": {
"joi": "^14.3.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^8.0.8"
},
"devDependencies": {
"@types/joi": "^14.3.4",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.0",
"@types/node": "^13.11.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"types": "dist/index.d.ts"
}