-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "http-proxies",
"version": "0.1.0-beta.1",
"description": "Simple http proxy cli with a json config",
"main": "index.js",
"scripts": {
"prepublish": "",
"build:front": "npm run --prefix front build",
"start:dev": "nodemon index.js -p 8888 -l -c test/conf.json",
"test": "jest"
},
"bin": {
"http-proxies": "index.js"
},
"repository": {
"url": "https://github.com/kepennar/http-proxies.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"clone": "^1.0.4",
"commander": "^2.15.1",
"connect": "^3.6.6",
"connect-route": "^0.1.5",
"http-proxy-middleware": "^0.18.0",
"joi": "^13.1.2",
"morgan": "^1.9.0",
"pem": "^1.12.5",
"serve-static": "^1.13.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"jest": "^22.4.3",
"nodemon": "^1.17.3"
},
"jest": {
"projects": [
"src"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverage": true
}
}