forked from pkgcloud/pkgcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.03 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
{
"name": "pkgcloud",
"description": "An infrastructure-as-a-service agnostic cloud library for node.js",
"version": "1.4.0",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"contributors": [
{
"name": "Nuno Job",
"email": "nuno@nodejitsu.com"
},
{
"name": "Maciej Malecki",
"email": "me@mmalecki.com"
},
{
"name": "Daniel Aristizabal",
"email": "daniel@nodejitsu.com"
},
{
"name": "Ken Perkins",
"email": "ken.perkins@rackspace.com"
},
{
"name": "Ross Kukulinski",
"email": "ross@kukulinski.com"
}
],
"repository": {
"type": "git",
"url": "http://github.com/pkgcloud/pkgcloud.git"
},
"keywords": [
"cloud",
"cloud computing",
"api",
"rackspace",
"joyent",
"aws",
"amazon",
"azure",
"google",
"iaas",
"servers",
"compute",
"storage",
"databases",
"client",
"mongolab",
"iriscouch",
"ibm",
"mongohq",
"openstack",
"redistogo",
"hpcloud",
"hp",
"helion"
],
"dependencies": {
"async": "0.9.x",
"aws-sdk": "^2.2.43",
"errs": "0.3.x",
"eventemitter2": "0.4.x",
"fast-json-patch": "0.5.x",
"filed": "0.1.x",
"gcloud": "^0.10.0",
"ibm-cos-sdk": "^1.2.3-0",
"ip": "0.3.x",
"liboneandone": "1.0.0",
"lodash": "^3.10.1",
"mime": "1.4.1",
"qs": "1.2.x",
"request": "2.83.0",
"s3-upload-stream": "~1.0.7",
"through2": "0.6.x",
"url-join": "0.0.x",
"xml2js": "0.1.x"
},
"devDependencies": {
"blanket": "1.1.9",
"coveralls": "^2.11.2",
"hock": "~1.2.0",
"jshint": "~2.7.0",
"mocha": "1.21.x",
"mocha-lcov-reporter": "0.0.1",
"should": "4.0.x"
},
"main": "./lib/pkgcloud",
"scripts": {
"test": "make test",
"cov": "make cov",
"travis": "make travis",
"lint": "make lint"
},
"config": {
"blanket": {
"pattern": "/lib/",
"data-cover-never": "node_modules"
}
},
"engines": {
"node": ">=0.10.x"
}
}