forked from alirizakeles/ghost-minio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.45 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
{
"name": "ghost-minio",
"version": "0.1.0",
"description": "Store and proxy requests for Ghost's images on Minio.",
"keywords": [
"ghost",
"minio",
"s3",
"storage",
"plugin",
"blog"
],
"engines": {
"node": ">= 8.9"
},
"license": "ISC",
"author": {
"name": "Brian Rogers",
"email": "captbrogers@protonmail.ch",
"url": "https://ditoforge.com"
},
"repository": {
"type": "git",
"url": "https://github.com/captbrogers/ghost-minio.git"
},
"bugs": {
"url": "https://github.com/captbrogers/ghost-minio/issues"
},
"homepage": "https://github.com/captbrogers/ghost-minio",
"main": "index.js",
"scripts": {
"build": "babel ./src/index.js --out-file ./index.js",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"test": "exit 0"
},
"dependencies": {
"ghost-storage-base": "0.0.3",
"minio": "^7.0.12",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"babel": {
"plugins": [
"transform-object-rest-spread",
"add-module-exports"
],
"presets": [
[
"env",
{
"targets": {
"node": "8.9"
},
"exclude": [
"transform-es2015-classes"
]
}
]
]
}
}