-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 858 Bytes
/
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
{
"name": "grpc-webpack-plugin",
"version": "0.2.79",
"description": "A webpack plugin that compiles .proto files automatically with gRPC-Web.",
"main": "index.js",
"author": "yk",
"repository": "github:m8524769/grpc-webpack-plugin",
"bugs": {
"url": "https://github.com/m8524769/grpc-webpack-plugin/issues",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"webpack",
"plugin",
"grpc-web",
"protoc"
],
"scripts": {
"test": "jest --runInBand --coverage"
},
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"command-exists": "^1.2.8"
},
"devDependencies": {
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.1"
},
"peerDependencies": {
"grpc-web": "^1.0.0",
"webpack": "^4.0.0"
}
}