forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "gcloud",
"version": "0.0.6",
"author": "Google Inc.",
"description": "Google Cloud APIs Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "jbd@google.com"
}
],
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/googlecloudplatform/gcloud-nodejs.git"
},
"keywords": [
"google",
"api",
"google apis",
"client",
"cloud",
"datastore",
"compute engine",
"google storage"
],
"dependencies" : {
"gapitoken": "*",
"async": "*",
"request": "*",
"node-uuid": "*"
},
"devDependencies" : {
"mocha": "*",
"istanbul": "*"
},
"scripts": {
"test": "node_modules/mocha/bin/_mocha --reporter spec",
"regression-test": "node_modules/mocha/bin/_mocha --reporter spec --timeout 10000 regression/*",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --timeout 10000 test/* regression/*"
},
"license": "Apache 2"
}