-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
115 lines (115 loc) · 3.38 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "camouflage-server",
"version": "0.0.0-development",
"description": "Easily mock your webservices while testing frontends.",
"homepage": "https://testinggospels.github.io/camouflage/",
"keywords": [
"test",
"mock",
"api",
"webservice",
"rest",
"camouflage",
"grpc",
"websockets",
"stub",
"virtualizatoion"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint \"src/**/*.ts\" --quiet",
"prestart": "npm run build",
"start": "node bin/camouflage.js --config ./config.yml",
"docs": "jsdoc -c jsdoc.json -t ./node_modules/foodoc/template",
"test": "start-server-and-test test:mock http://localhost:8080 test:features",
"pretest:mock": "npm run build; ts-node --project ./tests/tsconfig.json ./tests/prepare.ts",
"test:mock": "node bin/camouflage.js --config ./tests/config.yml",
"test:features": "TS_NODE_PROJECT=tests/tsconfig.json cucumber-js --require-module ts-node/register --require 'tests/features/**/*.ts' tests/features/",
"dev": "nodemon -e ts --exec \"npm run start\"",
"prod": "node bin/camouflage.js --config ./config.yml"
},
"bin": {
"camouflage": "bin/camouflage.js"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/testinggospels/camouflage"
},
"author": "Shubhendu Madhukar <[email protected]>",
"license": "MIT",
"preferGlobal": true,
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@grpc/grpc-js": "^1.4.6",
"@grpc/proto-loader": "^0.6.8",
"apicache": "^1.6.3",
"axios": "^1.2.0",
"compression": "^1.7.4",
"convert-csv-to-json": "^1.3.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-query-parser": "^1.3.3",
"express-soap": "^1.1.2",
"express-winston": "^4.2.0",
"fs-extra": "^10.1.0",
"handlebars": "^4.7.7",
"http-errors": "^2.0.0",
"http-proxy": "^1.18.1",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"logform": "^2.4.2",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"openapi-request-validator": "^12.0.2",
"openapi-response-validator": "^12.0.2",
"pg": "^8.8.0",
"prom-client": "^13.2.0",
"promised-handlebars": "^2.0.1",
"q": "^1.5.1",
"redis": "^3.1.2",
"spdy": "^4.0.2",
"swagger-stats": "^0.99.2",
"thrift": "^0.15.0",
"uuid": "^8.3.2",
"winston": "^3.4.0",
"ws": "^7.5.6",
"yargs": "^16.2.0"
},
"devDependencies": {
"@cucumber/cucumber": "^8.9.0",
"@types/apicache": "^1.6.1",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.13",
"@types/http-errors": "^1.8.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.14.37",
"@types/q": "^1.5.5",
"@types/redis": "^2.8.32",
"@types/swagger-stats": "^0.95.6",
"@types/thrift": "^0.10.11",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"foodoc": "0.0.9",
"jsdoc": "^3.6.7",
"mocha": "^8.4.0",
"nodemon": "^2.0.12",
"semantic-release": "^17.4.3",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.9.1",
"typescript": "^4.4.4"
}
}