forked from minio/minio-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.62 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
{
"name": "minio",
"version": "7.0.1",
"description": "S3 Compatible Cloud Storage client",
"main": "./dist/main/minio.js",
"scripts": {
"compile": "gulp compile",
"test": "gulp test",
"prepublish": "gulp test",
"functional": "gulp functional-test",
"browserify": "gulp browserify",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minio/minio-js.git"
},
"author": {
"name": "Minio, Inc.",
"email": "",
"url": "https://minio.io"
},
"engines": {
"node": ">= 0.10.0"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/minio/minio-js/issues",
"mail": ""
},
"homepage": "https://github.com/minio/minio-js#readme",
"dependencies": {
"async": "^1.5.2",
"block-stream2": "^1.0.0",
"concat-stream": "^1.4.8",
"es6-error": "^2.0.2",
"json-stream": "^1.0.0",
"lodash": "^4.14.2",
"mime-types": "^2.1.14",
"mkdirp": "^0.5.1",
"querystring": "0.2.0",
"through2": "^0.6.5",
"uuid": "^3.1.0",
"xml": "^1.0.0",
"xml2js": "^0.4.15"
},
"devDependencies": {
"browserify": "^12.0.1",
"chai": "^3.5.0",
"eslint": "^4.1.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-eslint": "^4.0.0",
"gulp-mocha": "^2.1.0",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^1.5.2",
"mocha": "^2.3.2",
"mocha-steps": "^1.1.0",
"nock": "^2.12.0",
"rewire": "^2.3.3",
"source-map-support": "^0.4.12",
"superagent": "^3.7.0"
},
"keywords": [
"api",
"amazon",
"minio",
"cloud",
"s3",
"storage"
]
}