This repository was archived by the owner on Sep 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
58 lines (58 loc) · 1.88 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
{
"name": "dorusu",
"version": "0.5.0",
"description": "An implementation of gRPC in Javascript",
"main": "lib/index.js",
"devDependencies": {
"bunyan": "~1.5",
"chai": "~3.0",
"codecov": "~1.0",
"dirty-chai": "~1.2",
"glob": "~7.0.3",
"istanbul": "~0.3",
"jsdoc": "~3.3",
"jshint": "~2.5",
"mocha": "~2.2",
"node-stream-zip": "~1.3.3",
"rewire": "~2.5.1",
"tmp": "~0.0.26"
},
"repository": {
"type": "git",
"url": "https://github.com/google/dorusu-js.git"
},
"bin": {
"dorusu_js_interop_client": "interop/interop_client.js",
"dorusu_js_interop_server": "interop/interop_server.js",
"math_client.js": "example/math_client.js",
"math_server.js": "example/math_server.js"
},
"dependencies": {
"argparse": "~1.0",
"async": "~1.2",
"concat-stream": "~1.4",
"fs-extra": "~0.30.0",
"google-auth-library": "~0.9",
"http2": "~3.3.4",
"lodash": "~3.9",
"protobufjs": "~5.0"
},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"bunyan-prod-interop": "./interop/run_prod_interop.js | bunyan -o short",
"codecov": "istanbul cover -x '**/example/**' -x '**/interop/**' _mocha -- --full-trace --reporter spec -i -g 'External Interop' --slow 1000 --timeout 5000 && codecov",
"doc": "jsdoc -c jsdoc.json",
"install-go-interop": "./interop/go_interop_agent.js",
"interop-test": "istanbul test _mocha -- --reporter spec -g 'External Interop'",
"lint": "jshint lib test interop example tools",
"postversion": "git push origin && git push origin --tags",
"preversion": "npm test && npm run lint",
"prod-interop": "./interop/run_prod_interop.js",
"sync-grpc-pbs": "./tools/sync_grpc_pbs.js",
"test": "istanbul test _mocha -- --full-trace --reporter spec -i -g 'External Interop' --slow 1000 --timeout 5000"
},
"author": "Timothy Emiola",
"license": "MIT"
}