forked from improbable-eng/ts-protoc-gen
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "flowtype-protoc-gen",
"version": "0.8.1-pre",
"description": "Protoc Plugin for Flowtype Declarations and Service Definitions (forked from ts-protoc-gen)",
"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",
"flow": "flow",
"test": "npm run flow && npm run test:unit && npm run test:integration && npm run test-flow:integration",
"test:unit": "./test/mocha-run-suite.sh 'test/unit/**/*.ts'",
"test:integration": "./test/mocha-run-suite.sh 'test/integration/**/*.ts'",
"test-flow:integration": "./test/flow/mocha-run-suite.sh 'test/flow/integration/**/*.js'",
"prepublishOnly": "npm run build"
},
"bin": {
"protoc-gen-flow": "bin/protoc-gen-flow"
},
"repository": "https://github.com/chrisgervang/flowtype-protoc-gen",
"keywords": [
"protobuf",
"protoc",
"flowtype",
"flow",
"grpc",
"service",
"proto3"
],
"author": "Chris Gervang (forked from Improbable)",
"license": "Apache-2.0",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"google-protobuf": "^3.6.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/chai": "^3.5.2",
"@types/google-protobuf": "^3.2.7",
"@types/lodash": "^4.14.106",
"@types/mocha": "^2.2.46",
"@types/node": "^7.0.52",
"babel": "^6.5.2",
"chai": "^3.5.0",
"flow-bin": "^0.86.0",
"grpc-web-client": "^0.7.0",
"lodash": "^4.17.5",
"lodash.isequal": "^4.5.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"
}
}