Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
akupiec
GitHub Repository: akupiec/mad-proxy
Path: blob/master/package.json
115 views
1
{
2
"name": "mad-proxy",
3
"version": "0.0.2",
4
"description": "Auto caching reverse proxy, useful when quick mad mocking is required",
5
"main": "bin/mad-proxy",
6
"directories": {
7
"test": "test"
8
},
9
"files": [
10
"bin",
11
"src"
12
],
13
"repository": {
14
"type": "git",
15
"url": "git+https://github.com/akupiec/mad-proxy.git"
16
},
17
"keywords": [
18
"mad-proxy",
19
"node",
20
"proxy",
21
"reverse-proxy",
22
"proxy-server",
23
"proxy-cache",
24
"cache"
25
],
26
"author": "akupiec",
27
"license": "MIT",
28
"bugs": {
29
"url": "https://github.com/akupiec/mad-proxy/issues"
30
},
31
"homepage": "https://github.com/akupiec/mad-proxy#readme",
32
"engines": {
33
"node": ">=6.9.2"
34
},
35
"bin": {
36
"mad-proxy": "bin/mad-proxy"
37
},
38
"scripts": {
39
"lint": "eslint .",
40
"unit": "jest",
41
"test": "npm run lint && npm run unit"
42
},
43
"dependencies": {
44
"body-parser": "^1.18.2",
45
"chalk": "^2.3.0",
46
"crc": "^3.5.0",
47
"deep-assign": "^2.0.0",
48
"express": "^4.16.2",
49
"glob": "^7.1.2",
50
"http-proxy": "^1.16.2",
51
"mime-types": "^2.1.17",
52
"yargs": "^10.0.3"
53
},
54
"devDependencies": {
55
"eslint": "^4.10.0",
56
"jest": "^23.6.0",
57
"supertest": "^3.0.0"
58
},
59
"jest": {
60
"bail": true,
61
"verbose": true,
62
"testEnvironment": "node"
63
}
64
}
65
66