forked from googleapis/gapic-generator-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "@google-cloud/gapic-generator",
"version": "0.0.1",
"description": "Google API Client Library Generator for TypeScript, written in TypeScript.",
"engines": {
"node": ">=8.13.0"
},
"files": [
"build/src",
"pbjs-genfiles"
],
"bin": {
"protoc-gen-typescript_gapic": "build/src/cli.js"
},
"scripts": {
"test": "c8 --reporter=lcov mocha build/test",
"codecov": "c8 --reporter=lcov mocha build/test && c8 report",
"lint": "gts check",
"clean": "gts clean",
"compile-protos": "pbjs -p protos -t static-module -o pbjs-genfiles/plugin.js google/protobuf/compiler/plugin.proto google/api/annotations.proto google/api/client.proto google/longrunning/operations.proto && pbts pbjs-genfiles/plugin.js -o pbjs-genfiles/plugin.d.ts",
"compile": "tsc -p . && cp -r typescript/test/protos build/test/",
"fix": "gts fix",
"prepare": "npm run compile-protos && npm run compile",
"pretest": "npm run compile-protos && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/googleapis/gapic-generator-typescript.git"
},
"author": "Google LLC",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googleapis/gapic-generator-typescript/issues"
},
"homepage": "https://github.com/googleapis/gapic-generator-typescript#readme",
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/get-stdin": "^5.0.1",
"@types/google-protobuf": "^3.2.7",
"@types/mocha": "^5.2.5",
"@types/node": "^11.12.0",
"@types/nunjucks": "^3.1.0",
"@types/rimraf": "^2.0.2",
"assert-rejects": "^1.0.0",
"c8": "^5.0.1",
"codecov": "^3.0.4",
"espower-typescript": "^9.0.0",
"google-gax": "^1.3.0",
"gts": "^0.9.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"power-assert": "^1.6.0",
"rimraf": "^3.0.0",
"typescript": "~3.5.3"
},
"dependencies": {
"command-line-args": "^5.0.2",
"get-stdin": "^6.0.0",
"google-protobuf": "^3.6.1",
"nunjucks": "^3.1.3",
"protobufjs": "^6.8.8"
}
}