forked from minio/minio-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.68 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
{
"name": "minio",
"version": "7.0.19",
"description": "S3 Compatible Cloud Storage client",
"main": "./dist/main/minio.js",
"scripts": {
"compile": "gulp compile",
"test": "gulp test",
"lint": "gulp lint",
"prepublishOnly": "gulp test",
"functional": "gulp functionalTest",
"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://min.io"
},
"engines": {
"node": ">= 4"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/minio/minio-js/issues",
"mail": ""
},
"homepage": "https://github.com/minio/minio-js#readme",
"dependencies": {
"async": "^3.1.0",
"block-stream2": "^2.0.0",
"es6-error": "^4.1.1",
"fast-xml-parser": "^3.17.5",
"json-stream": "^1.0.0",
"lodash": "^4.17.20",
"mime-types": "^2.1.14",
"mkdirp": "^0.5.1",
"querystring": "0.2.0",
"through2": "^3.0.1",
"xml": "^1.0.0",
"xml2js": "^0.4.15"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-mocha": "^6.0.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^6.2.0",
"mocha-steps": "^1.1.0",
"nock": "^10.0.6",
"source-map-support": "^0.5.13",
"superagent": "^5.1.0",
"uuid": "^3.3.2"
},
"keywords": [
"api",
"amazon",
"minio",
"cloud",
"s3",
"storage"
]
}