-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.04 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
{
"name": "grpc-web-proxy",
"version": "0.0.3",
"description": "Web UI for interacting with gRPC services",
"bin": {
"grpc-web-proxy": "./index.js"
},
"main": "index.js",
"scripts": {
"audit": "npm audit",
"build": "next build",
"cov": "opener coverage/index.html",
"dev": "node index.js",
"lint": "standard | snazzy",
"start": "NODE_ENV=production node index.js",
"test": "npm run build && NODE_ENV=test jest",
"test-changes": "npm run build && NODE_ENV=test jest --watch --no-coverage",
"watch-test": "npm run build && NODE_ENV=test jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AntonRublev360/grpc-web-proxy.git"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
".next",
"test"
],
"coverageReporters": [
"html",
"text-summary"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node",
"verbose": true
},
"keywords": [
"grpc",
"web",
"ui",
"proxy",
"javascript"
],
"author": "anton.v.rublev@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/AntonRublev360/grpc-web-proxy/issues"
},
"homepage": "https://github.com/AntonRublev360/grpc-web-proxy#readme",
"devDependencies": {
"jest": "^23.5.0",
"opener": "^1.5.1",
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"supertest": "^3.1.0"
},
"dependencies": {
"@grpc/proto-loader": "^0.3.0",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"compression": "^1.7.3",
"express": "^4.16.3",
"grpc": "^1.14.1",
"helmet": "^3.13.0",
"lodash": "^4.17.10",
"next": "^6.1.1",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"serve-favicon": "^2.5.0",
"yargs": "^12.0.1"
},
"pre-commit": [
"lint",
"test",
"audit"
]
}