-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 KB
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
{
"name": "@mediasuite/cloud-storage",
"description": "upload and download files from various providers",
"version": "1.1.0",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mediasuitenz/cloud-storage.git"
},
"bugs": {
"url": "https://github.com/mediasuitenz/cloud-storage/issues"
},
"homepage": "https://github.com/mediasuitenz/cloud-storage",
"author": {
"name": "Developers",
"email": "developers@madecurious.com",
"url": "https://madecurious.com/"
},
"engines": {
"node": ">=8.11.0"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"pretest": "npm run lint",
"test:ci": "mocha -R spec test",
"test:dev": "testem .",
"test": "npm run test:ci",
"prepublish": "npm test && npm prune",
"preversion:patch": "npm run test",
"version:patch": "xyz -i patch",
"preversion:minor": "npm run test",
"version:minor": "xyz -i minor",
"preversion:major": "npm run test",
"version:major": "xyz -i major"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"cloud",
"storage",
"files",
"upload",
"download"
],
"dependencies": {
"aws-sdk": "^2.450.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^6.1.4",
"rewire": "^2.5.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"testem": "^2.15.1",
"xyz": "^3.0.0"
}
}