UNPKG

1.11 kBJSONView Raw
1{
2 "name": "ts-protoc-gen",
3 "version": "0.5.1",
4 "description": "Protoc Plugin for TypeScript Declarations and Service Definitions",
5 "scripts": {
6 "lint": "tslint src/**/*.ts && (cd test && npm run lint)",
7 "lint:fix": "npm run lint -- --fix && (cd test && npm run lint:fix)",
8 "clean": "rm -rf lib",
9 "build": "npm run clean && tsc",
10 "test": "npm run lint && npm run build && (cd test && npm run test)",
11 "prepublishOnly": "npm build"
12 },
13 "bin": {
14 "protoc-gen-ts": "bin/protoc-gen-ts"
15 },
16 "repository": "https://github.com/improbable-eng/ts-protoc-gen",
17 "keywords": [
18 "protobuf",
19 "protoc",
20 "typescript",
21 "ts",
22 "grpc",
23 "service",
24 "proto3"
25 ],
26 "author": "Improbable",
27 "license": "Apache-2.0",
28 "dependencies": {
29 "google-protobuf": "^3.2.0"
30 },
31 "devDependencies": {
32 "@types/chai": "^3.4.35",
33 "@types/google-protobuf": "^3.2.4",
34 "@types/mocha": "^2.2.40",
35 "@types/node": "^7.0.5",
36 "chai": "^3.5.0",
37 "mocha": "^3.2.0",
38 "source-map-support": "^0.4.14",
39 "tslint": "^5.9.1",
40 "typescript": "^2.2.1"
41 }
42}