-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.82 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
75
76
77
{
"author": {
"name": "Wiley Choi",
"email": "wiley@nurigo.net",
"url": "https://nurigo.net"
},
"babel": {
"plugins": [
"transform-object-rest-spread",
"add-module-exports"
],
"presets": [
[
"env",
{
"targets": {
"node": "4.5"
},
"exclude": [
"transform-es2015-classes"
]
}
]
]
},
"bugs": {
"url": "https://github.com/nurigo/ghost-storage-adapter-s3-cjk/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"aws-sdk": "^2.331.0",
"ghost-storage-base": "0.0.1"
},
"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-env": "^1.6.0",
"commitizen": "^2.8.6",
"cz-conventional-changelog": "^1.2.0",
"semantic-release": "^15.9.9",
"snazzy": "^5.0.0",
"standard": "^8.3.0",
"travis-deploy-once": "^5.0.2"
},
"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-cjk",
"repository": {
"type": "git",
"url": "https://github.com/nurigo/ghost-storage-adapter-s3-cjk.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",
"test": "exit 0",
"travis-deploy-once": "travis-deploy-once"
},
"version": "2.8.0"
}