Fix Dependency Issues

- Use peer dependencies to state relationship with hexo
- Re-install `level` required package (can be used to create local S3 cache for performance, see [s3-sync](https://github.com/hughsk/s3-sync))
This commit is contained in:
Nick Terwoord
2015-05-06 20:15:07 -04:00
parent ca23235818
commit d520197b85

View File

@@ -21,11 +21,12 @@
"license": { "license": {
"type": "MIT" "type": "MIT"
}, },
"engines": { "peerDependencies": {
"hexo": ">= 3.0.0" "hexo": "3.x"
}, },
"dependencies": { "dependencies": {
"chalk": "^1.0.0", "chalk": "^1.0.0",
"level": "^0.18.0",
"readdirp": "^0.3.3", "readdirp": "^0.3.3",
"s3-sync": "^0.5.1" "s3-sync": "^0.5.1"
} }