forked from improbable-eng/ts-protoc-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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": "ts-protoc-gen",
"version": "0.10.1-pre",
"description": "Protoc Plugin for TypeScript Declarations and Service Definitions",
"scripts": {
"lint": "tslint -c tslint.json 'test/**/*.ts' 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"clean": "rm -rf lib",
"build": "npm run clean && tsc",
"generate": "./generate.sh",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "./test/mocha-run-suite.sh 'test/unit/**/*.ts'",
"test:integration": "./test/mocha-run-suite.sh 'test/integration/**/*.ts'",
"prepublishOnly": "npm run build"
},
"bin": {
"protoc-gen-ts": "bin/protoc-gen-ts"
},
"repository": "https://github.com/improbable-eng/ts-protoc-gen",
"keywords": [
"protobuf",
"protoc",
"typescript",
"ts",
"grpc",
"service",
"proto3"
],
"author": "Improbable",
"license": "Apache-2.0",
"dependencies": {
"google-protobuf": "^3.6.1"
},
"devDependencies": {
"@bazel/karma": "~0.30.0",
"@bazel/typescript": "~0.30.0",
"@improbable-eng/grpc-web": "^0.9.1",
"@types/chai": "^3.5.2",
"@types/google-protobuf": "^3.2.7",
"@types/jasmine": "^2.8.9",
"@types/lodash": "^4.14.106",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.46",
"@types/node": "^7.0.52",
"babel": "^6.5.2",
"browser-headers": "^0.4.1",
"chai": "^3.5.0",
"lodash": "^4.17.5",
"lodash.isequal": "^4.5.0",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"mocha-spec-json-output-reporter": "^1.1.6",
"source-map-support": "^0.4.18",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}