-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@sayjava/deputy",
"version": "0.6.3",
"homepage": "https://sayjava.github.io/deputy",
"publisher": "Raymond",
"engines": {
"node": ">=14.17"
},
"bugs": {
"url": "https://github.com/sayjava/deputy/issues"
},
"author": {
"name": "Raymond Ottun",
"url": "https://twitter.com/sayjava"
},
"description": "Deputy is a robust HTTP(s) mocking sever suitable for api stubbing in development and testing. Declarative and HTTP based APIs, automatic proxying and sequence diagraming",
"repository": "git@github.com:sayjava/deputy.git",
"license": "MIT",
"keywords": [
"mock-server",
"stubbing",
"mocking",
"http-mock",
"api-mocks",
"prototyping",
"mocking-server"
],
"files": [
"lib/**",
"ui/build/**"
],
"main": "lib/index.js",
"bin": {
"deputy": "lib/deputy.js"
},
"scripts": {
"pretty": "npx prettier --write '**/*.{ts,tsx,md,yml}'",
"lint": "eslint src",
"start": "node --inspect=5858 lib/deputy.js",
"clean": "rm -rf lib",
"build": "tsc",
"watch": "nodemon",
"dev": "ts-node src/deputy.ts --mocks-directory=mocks",
"dev:ui": "yarn --cwd ui dev",
"build:ui": "yarn --cwd ui build",
"test": "jest src/**/*.test.ts",
"fill": "NODE_TLS_REJECT_UNAUTHORIZED=0 node random.js"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/supertest": "^2.0.10",
"@types/yargs": "^15.0.10",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"axios": "^0.21.4",
"cli-table": "^0.3.6",
"cors": "^2.8.5",
"devcert": "^1.2.0",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"morgan": "^1.10.0",
"shortid": "^2.2.16",
"winston": "^3.3.3",
"ws": "^8.2.2",
"yaml": "^1.10.2",
"yargs": "^17.2.0"
}
}