-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@story-health/vitest-koa-mocks",
"version": "5.1.2",
"license": "MIT",
"description": "Utilities to easily stub Koa context and cookies",
"main": "./build/ts/index.js",
"types": "./build/ts/index.d.ts",
"author": "Story Health",
"repository": {
"type": "git",
"url": "[email protected]:Story-Health/vitest-koa-mocks.git"
},
"bugs": {
"url": "https://github.com/Story-Health/vitest-koa-mocks/issues"
},
"homepage": "https://github.com/Story-Health/vitest-koa-mocks/blob/main/README.md",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"koa": "^2.13.4",
"node-mocks-http": "^1.11.0"
},
"devDependencies": {
"@tsconfig/node-lts": "^18.12.1",
"@tsconfig/strictest": "^2.0.0",
"@types/express": "^4.11.1",
"@types/koa": "^2.0.0",
"typescript": "~5.0.2",
"vitest": "^1.2.1"
},
"peerDependencies": {
"vitest": ">=1.2.1 <3.0.0"
},
"sideEffects": false,
"files": [
"build/",
"!build/*.tsbuildinfo",
"!build/ts/**/tests/"
]
}