forked from testinggospels/camouflage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.87 KB
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
{
"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"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint \"dist/**/*.js\"",
"prestart": "npm run build",
"start": "node bin/camouflage.js -m ./mocks",
"docs": "jsdoc -c jsdoc.json -t ./node_modules/foodoc/template",
"test": "mocha tests/index.spec.js --exit || true"
},
"bin": {
"camouflage": "bin/camouflage.js"
},
"release": {
"branches": [
"main"
]
},
"repository": {
"type": "git",
"url": "https://github.com/testinggospels/camouflage"
},
"author": "Shubhendu Madhukar <shubhendumadhukar@gmail.com>",
"license": "MIT",
"preferGlobal": true,
"dependencies": {
"@grpc/grpc-js": "^1.2.12",
"@grpc/proto-loader": "^0.6.1",
"@opuscapita/filemanager-server": "^1.1.7",
"apicache": "^1.6.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"convert-csv-to-json": "^1.3.0",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"fs-extra": "^9.1.0",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"moment": "^2.29.1",
"node-cron": "^3.0.0",
"prom-client": "^13.0.0",
"spdy": "^4.0.2",
"swagger-stats": "^0.99.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"ws": "^7.4.5",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.37",
"@types/ws": "^7.4.4",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.26.0",
"foodoc": "0.0.9",
"jsdoc": "^3.6.7",
"mocha": "^8.4.0",
"semantic-release": "^17.4.3",
"typescript": "^4.2.4"
}
}