-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "jest-mock-server",
"version": "0.1.0",
"description": "Test your http clients with jest",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"repository": "[email protected]:DanielHreben/jest-mock-server.git",
"author": "Daniel Hreben <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"tags": [
"jest",
"mock",
"http",
"server",
"plugin"
],
"scripts": {
"build": "rm -rf ./dist; tsc --project ./tsconfig.build.json",
"lint:check": "eslint . --ext .ts",
"lint": "yarn lint:check --fix",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^26.4.2",
"node-fetch": "^2.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4"
},
"dependencies": {
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"jest": "*"
}
}