-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "cloud-storage-sync",
"version": "1.0.0",
"description": "Library for sync cloud storage containers. Supported cloud storages: Azure Blob Storage, Amazon S3.",
"scripts": {
"lint": "jscs index.js lib/",
"pretest": "npm run lint",
"test": "mocha --reporter spec lib/**/*.spec.js"
},
"author": "Denis Bezrukov <[email protected]> (https://github.com/anthrax63)",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aggregion/storage-sync.git"
},
"bugs": {
"url": "https://github.com/aggregion/storage-sync/issues"
},
"homepage": "https://github.com/aggregion/storage-sync#readme",
"license": "ISC",
"keywords": [
"cloud",
"storage",
"azure",
"amazon",
"s3"
],
"dependencies": {
"async": "^1.5.2",
"aws-sdk": "^2.3.4",
"azure": "^0.10.6",
"lodash": "^4.11.1",
"s3-upload-stream": "^1.0.7",
"stream-buffers": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"jscs": "^3.0.3",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"string-to-stream": "^1.0.1"
}
}