forked from dimapaloskin/micro-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 772 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 772 Bytes
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
{
"name": "micro-proxy",
"version": "1.1.0",
"description": "Simplest proxy server for microservices",
"bin": {
"micro-proxy": "./bin/micro-proxy"
},
"main": "index.js",
"scripts": {
"lint": "standard",
"testonly": "jest --verbose --bail -i",
"test": "npm run lint && npm run testonly"
},
"repository": "git@github.com:zeit/micro-proxy.git",
"author": "Arunoda Susiripala <arunoda.susiripala@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"arg": "^1.0.0",
"micro": "^9.0.2",
"node-fetch": "^1.7.3",
"ws": "^3.3.2"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"jest": "^21.2.1",
"standard": "^10.0.3",
"tempfile": "^2.0.0",
"test-listen": "^1.1.0"
}
}