-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "proto2graphql",
"version": "0.1.3-alpha",
"description": "Converts schema definitions in Protocol Buffer to GraphQL",
"main": "./lib/index.js",
"bin": {
"proto2graphql": "./bin/proto2graphql"
},
"files": [
"protos",
"lib",
"bin"
],
"scripts": {
"clean": "rm -rf ./lib ./protos",
"build": "tsc -p .",
"test": "nyc mocha -r ts-node/register **/test/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pull:wkt": "scripts/pull-wkt.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emzeq/proto2graphql.git"
},
"keywords": [
"proto",
"protobuf",
"pb",
"graphql",
"sdl",
"protocol",
"buffers",
"schema"
],
"author": "Aurelio Agundez",
"license": "MIT",
"bugs": {
"url": "https://github.com/emzeq/proto2graphql/issues"
},
"homepage": "https://github.com/emzeq/proto2graphql#readme",
"dependencies": {
"commander": "^4.0.1",
"graphql": "^14.5.8",
"protobufjs": "^6.8.8"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/commander": "^2.12.2",
"@types/graphql": "^14.5.0",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}