-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathpackage.json
78 lines (78 loc) · 1.65 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@google-cloud/pubsub",
"version": "0.10.0",
"author": "Google Inc.",
"description": "Cloud Pub/Sub Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "jbd@google.com"
},
{
"name": "Johan Euphrosine",
"email": "proppy@google.com"
},
{
"name": "Patrick Costello",
"email": "pcostell@google.com"
},
{
"name": "Ryan Seys",
"email": "ryan@ryanseys.com"
},
{
"name": "Silvano Luciani",
"email": "silvano@google.com"
},
{
"name": "Stephen Sawchuk",
"email": "sawchuk@gmail.com"
}
],
"main": "./src/index.js",
"files": [
"src",
"AUTHORS",
"CONTRIBUTORS",
"COPYING"
],
"repository": "googlecloudplatform/google-cloud-node",
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google pubsub",
"pubsub"
],
"dependencies": {
"@google-cloud/common": "^0.13.0",
"@google-cloud/common-grpc": "^0.3.1",
"arrify": "^1.0.0",
"extend": "^3.0.0",
"google-gax": "^0.13.0",
"google-proto-files": "^0.11.0",
"is": "^3.0.1",
"modelo": "^4.2.0",
"propprop": "^0.3.0",
"uuid": "^3.0.1"
},
"devDependencies": {
"async": "^2.1.4",
"mocha": "^3.0.1",
"proxyquire": "^1.7.10"
},
"scripts": {
"publish-module": "node ../../scripts/publish.js pubsub",
"test": "mocha test/*.js",
"system-test": "mocha system-test/*.js --no-timeouts --bail"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.0.0"
}
}