-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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": "mocaron",
"version": "1.1.0",
"description": "Simple express mock server with a flexible API inspired by fetch-mock",
"keywords": [
"mock",
"mocking",
"mocks",
"mock-server",
"server",
"express",
"fetch-mock"
],
"repository": "joshuajaco/mocaron",
"license": "MIT",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier -w .",
"format:check": "prettier -c .",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "pnpm run lint --fix",
"prepublishOnly": "pnpm run build",
"test": "nyc -r=lcov -r=text node --trace-warnings -r ts-node/register --test \"**/*.test.ts\"",
"typecheck": "tsc"
},
"dependencies": {
"@types/express": "^4.17.21",
"body-parser": "^1.20.2",
"deep-equal": "^2.2.3",
"express": "^4.19.2",
"jest-diff": "^29.7.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@types/body-parser": "^1.19.5",
"@types/deep-equal": "^1.0.4",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"get-port-please": "^3.1.2",
"node-mocks-http": "^1.15.1",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"packageManager": "pnpm@9.8.0"
}