forked from colinmeinke/ghost-storage-adapter-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"author": {
"name": "Colin Meinke",
"email": "[email protected]",
"url": "https://colinmeinke.com"
},
"babel": {
"plugins": [
"transform-object-rest-spread",
"add-module-exports"
],
"presets": [
"es2015"
]
},
"bugs": {
"url": "https://github.com/colinmeinke/ghost-storage-adapter-s3/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"aws-sdk": "^2.6.3",
"bluebird": "^3.4.6"
},
"description": "An AWS S3 storage adapter for Ghost 0.10+",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"semantic-release": "^4.3.5",
"snazzy": "^5.0.0",
"standard": "^8.3.0"
},
"homepage": "https://github.com/colinmeinke/ghost-storage-adapter-s3#readme",
"license": "ISC",
"keywords": [
"adapter",
"aws",
"ghost",
"s3",
"storage"
],
"main": "index.js",
"name": "ghost-storage-adapter-s3",
"repository": {
"type": "git",
"url": "https://github.com/colinmeinke/ghost-storage-adapter-s3.git"
},
"scripts": {
"build": "babel ./src/index.js --out-file ./index.js",
"commit": "git-cz",
"fix": "standard --fix",
"lint": "standard --verbose | snazzy",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "exit 0"
},
"version": "0.0.0-semantically-released"
}