-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.17 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
{
"name": "gcloud",
"version": "0.15.0",
"author": "Google Inc.",
"description": "Google Cloud APIs Client Library for Node.js",
"contributors": [
{
"name": "Burcu Dogan",
"email": "[email protected]"
},
{
"name": "Johan Euphrosine",
"email": "[email protected]"
},
{
"name": "Patrick Costello",
"email": "[email protected]"
},
{
"name": "Ryan Seys",
"email": "[email protected]"
},
{
"name": "Silvano Luciani",
"email": "[email protected]"
},
{
"name": "Stephen Sawchuk",
"email": "[email protected]"
}
],
"main": "./lib/index",
"files": [
"lib/",
"AUTHORS",
"CONTRIBUTORS",
"COPYING"
],
"repository": "googlecloudplatform/gcloud-node",
"keywords": [
"google",
"api",
"google apis",
"client",
"cloud",
"datastore",
"compute engine",
"google storage"
],
"dependencies": {
"async": "^0.9.0",
"buffer-equal": "0.0.1",
"configstore": "^0.3.2",
"duplexify": "^3.2.0",
"extend": "^2.0.0",
"sse4_crc32": "^3.1.0",
"google-auth-library": "^0.9.4",
"mime-types": "^2.0.8",
"node-uuid": "^1.4.2",
"once": "^1.3.1",
"protobufjs": "^3.8.2",
"request": "^2.53.0",
"stream-events": "^1.0.1",
"through2": "^0.6.3"
},
"devDependencies": {
"bytebuffer": "^3.5.4",
"coveralls": "^2.11.2",
"dox": "^0.7.0",
"glob": "^5.0.9",
"istanbul": "^0.3.5",
"jshint": "^2.6.0",
"mitm": "^1.1.0",
"mocha": "^2.1.0",
"mockery": "^1.4.0",
"tmp": "0.0.24"
},
"scripts": {
"docs": "./scripts/docs.sh",
"lint": "jshint lib/ system-test/ test/",
"test": "npm run docs && mocha test/*/*.js test/docs.js",
"system-test": "mocha system-test/* --timeout 30000",
"cover": "istanbul cover -x 'system-test/*' _mocha -- --timeout 30000 test/*/*.js test/docs.js system-test/*",
"coveralls": "istanbul cover -x 'system-test/*' _mocha --report lcovonly -- --timeout 30000 test/*/*.js test/docs.js system-test/* -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"license": "Apache 2"
}