-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "grpcnode",
"version": "1.1.1",
"description": "CLI tool for working with gRPC in nodejs, dynamically",
"scripts": {
"build": "babel src -d build",
"prepublish": "npm run build"
},
"bin": {
"grpcnode": "build/grpcnode.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/konsumer/grpcnode.git"
},
"author": "David Konsumer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/konsumer/grpcnode/issues"
},
"homepage": "https://github.com/konsumer/grpcnode#readme",
"keywords": [
"grpc",
"api",
"protobuf"
],
"babel": {
"presets": [
"env",
"stage-3"
],
"plugins": [
"shebang"
]
},
"dependencies": {
"chalk": "^3.0.0",
"grpc": "^1.10.1",
"indent": "0.0.2",
"jsoncolor": "0.0.2",
"lodash": "^4.17.5",
"yargs": "^13.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-shebang": "1.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1"
}
}