-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
{
"name": "grpc-loader",
"version": "2.0.0",
"description": "gRPC loader module for webpack",
"main": "index.js",
"keywords": [
"webpack",
"grpc",
"protobuf",
"proto",
"protocol",
"buffer"
],
"author": "Anton Bartsits @ashtonroute",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ashtonroute/grpc-loader.git"
},
"bugs": {
"url": "https://github.com/ashtonroute/grpc-loader/issues"
},
"scripts": {
"test:webpack": "npm run test:clean && webpack --config test/webpack.config.js --display-error-details && npm run start",
"test:clean": "rimraf test/out",
"test": "npm run test:webpack",
"start": "node test/out"
},
"dependencies": {
"bluebird": "^3.5.0",
"grpc-tools": "^1.0.0",
"loader-utils": "^1.0.0",
"protobufjs": "~6.8.0",
"rimraf": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.6.0",
"google-protobuf": "^3.0.0",
"grpc": "^1.0.0",
"webpack": "^3.0.0",
"webpack-node-externals": "^1.0.0"
},
"peerDependencies": {
"google-protobuf": "^3.0.0",
"grpc": "^1.0.0",
"protobufjs": "~6.8.0",
"webpack": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
}
}