-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@mediamonks/monck",
"version": "1.0.6",
"description": "Add highly configurable API mocks to your express server",
"keywords": [
"mock",
"express",
"middleware"
],
"repository": "[email protected]:mediamonks/monck.git",
"author": "Arjan van Wijk <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": {
"monck": "./bin/monck.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nodemon --ext ts --exec 'tsm' example/index.ts",
"dev:cli": "tsc -p tsconfig.build.json --watch",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/body-parser": "1.19.0",
"@types/debug": "^4.1.7",
"@types/express": "4.17.11",
"@types/express-serve-static-core": "4.17.19",
"@types/glob": "7.1.3",
"@types/multer": "1.4.5",
"@types/node": "^14.14.13",
"@types/path-to-regexp": "1.7.0",
"@types/qs": "6.9.6",
"@types/serve-static": "1.13.9",
"@types/signale": "1.4.1",
"@types/yargs": "^17.0.8",
"asset": "^0.4.13",
"body-parser": "^1.19.0",
"chokidar": "^3.4.3",
"express": "^4.17.1",
"glob": "^7.1.6",
"multer": "^1.4.2",
"path-to-regexp": "^6.2.0",
"pkg-up": "^4.0.0",
"signale": "^1.4.0",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/faker": "^5.1.5",
"faker": "^5.1.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"tsm": "^2.2.1",
"typescript": "^4.6.0-dev.20211214"
},
"engines": {
"npm": ">= 7.0.0",
"node": ">= 14.0.0"
}
}