-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@mean-expert/protoc-ts",
"version": "0.0.2",
"description": "Protoc compiler plugin for TypeScript service interfaces",
"scripts": {
"lint": "tslint src/**/*.ts && (cd test && npm run lint)",
"lint:fix": "npm run lint -- --fix && (cd test && npm run lint:fix)",
"clean": "rm -rf lib",
"build": "npm run clean && tsc",
"test": "npm run lint && npm run build && (cd test && npm run test)"
},
"bin": {
"protoc-gen-ts": "bin/protoc-gen-ts"
},
"repository": "https://github.com/mean-expert-official/protoc-ts",
"keywords": [
"protobuf",
"protoc",
"typescript",
"ts",
"grpc",
"service",
"proto3"
],
"author": {
"name": "Jonathan Casarrubias",
"email": "[email protected]",
"url": "http://mean.expert"
},
"license": "MIT",
"dependencies": {
"google-protobuf": "^3.2.0"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/google-protobuf": "^3.2.4",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.5",
"babel": "^6.5.2",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"source-map-support": "^0.4.14",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
}
}