forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 3.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "gcloud",
"version": "0.33.0",
"author": "Google Inc.",
"description": "Google Cloud APIs 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": "./lib/index",
"files": [
"lib/",
"AUTHORS",
"CONTRIBUTORS",
"COPYING"
],
"repository": "googlecloudplatform/gcloud-node",
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google bigquery",
"google big query",
"bigquery",
"big query",
"google cloud datastore",
"cloud datastore",
"datastore",
"google cloud dns",
"cloud dns",
"dns",
"google cloud pub/sub",
"google cloud pubsub",
"cloud pub/sub",
"cloud pubsub",
"pub/sub",
"pubsub",
"google cloud storage",
"cloud storage",
"gcs",
"google compute engine",
"compute engine",
"computeengine",
"gce",
"google app engine",
"app engine",
"google appengine",
"appengine",
"gae",
"google prediction",
"prediction",
"google translate",
"translate",
"google cloud logging",
"cloud logging",
"logging",
"google cloud resource manager",
"cloud resource manager",
"resource manager",
"google cloud vision",
"cloud vision",
"vision"
],
"dependencies": {
"JSONStream": "^1.0.7",
"array-uniq": "^1.0.2",
"arrify": "^1.0.0",
"async": "^1.4.2",
"concat-stream": "^1.5.0",
"create-error-class": "^2.0.1",
"dns-zonefile": "0.1.18",
"duplexify": "^3.2.0",
"ent": "^2.2.0",
"extend": "^3.0.0",
"gce-images": "^0.2.0",
"gcs-resumable-upload": "^0.5.0",
"google-auto-auth": "^0.2.0",
"google-proto-files": "^0.1.1",
"grpc": "^0.14.1",
"hash-stream-validation": "^0.1.0",
"is": "^3.0.1",
"methmeth": "^1.0.0",
"mime-types": "^2.0.8",
"modelo": "^4.2.0",
"once": "^1.3.1",
"prop-assign": "^1.0.0",
"propprop": "^0.3.0",
"pumpify": "^1.3.3",
"request": "^2.70.0",
"retry-request": "^1.2.3",
"rgb-hex": "^1.0.0",
"snake": "0.0.1",
"split-array-stream": "^1.0.0",
"stream-events": "^1.0.1",
"string-format-obj": "^1.0.0",
"through2": "^2.0.0"
},
"devDependencies": {
"bytebuffer": "^4.0.0",
"coveralls": "^2.11.2",
"deep-strict-equal": "^0.1.0",
"dox": "^0.8.0",
"glob": "^5.0.9",
"globby": "^3.0.1",
"istanbul": "^0.3.5",
"jscs": "^2.1.1",
"jshint": "^2.9.1",
"mitm": "^1.1.0",
"mocha": "^2.1.0",
"mockery-next": "^2.0.1-3",
"multiline": "^1.0.2",
"node-uuid": "^1.4.3",
"normalize-newline": "^2.0.0",
"tmp": "0.0.27"
},
"scripts": {
"docs": "node ./scripts/docs.js",
"lint": "jshint lib/ system-test/ test/ && jscs lib/ system-test/ test/",
"test": "npm run docs && mocha test/*/*.js test/index.js test/docs.js",
"system-test": "mocha system-test/*.js --no-timeouts --bail",
"coveralls": "istanbul cover _mocha --report lcovonly -- --no-timeouts --bail test/**/*.js -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "Apache-2.0",
"engines": {
"node": ">=0.12.0"
}
}