-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "koa-connect",
"version": "2.1.0",
"description": "Use Connect/Express middleware in Koa",
"repository": "vkurchatkin/koa-connect",
"main": "index.js",
"types": "index.d.ts",
"author": "Vladimir Kurchatkin <[email protected]>",
"contributors": [
"Louis DeScioli (https://descioli.design)"
],
"license": "MIT",
"scripts": {
"start": "tsc --watch",
"build": "tsc -p tsconfig-build.json",
"test": "mocha -r ts-node/register tests.ts",
"test:watch": "npm run test -- --watch --watch-extensions ts --reporter nyan"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/koa": "^2.0.46",
"@types/mocha": "^7.0.2",
"@types/node": "^10.9.2",
"@types/supertest": "^2.0.9",
"body-parser": "^1.19.0",
"husky": "^4.2.5",
"koa": "^2.0.0",
"lint-staged": "^10.2.9",
"mocha": "^2.3.4",
"prettier": "^2.0.5",
"supertest": "^1.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.0.1"
},
"keywords": [
"koa",
"connect",
"express",
"middleware"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(*.d).ts": "prettier --single-quote --write",
"*.md": "prettier --write"
}
}