Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaud Lepretre <thibaud.lepretre@gmail.com>2016-03-30 22:59:16 +0300
committerThibaud Lepretre <thibaud.lepretre@gmail.com>2016-10-01 14:14:57 +0300
commit5f212cd8263ea9a4bb2861347117d35b5710fa19 (patch)
tree9110ebcc4ab83bfb028d1ab1ebf49039d6e25b51 /package.json
parent129e0ee39e78cb60c376d56ccf98af1bb3f9b70a (diff)
Transform hexo template to hugo
- [x] show case Transformation - [x] _default - [x] single - [x] summary - [x] list - [x] index (aka layout) - [x] all-archives - [x] all-categories - [x] all-tags - [x] archives - [x] categories - [x] page - [x] post - [x] tag - [x] partials - [x] about - [x] archive-post - ~~[ ] archive~~ Not compatible replace by Taxonomy list (like `taxonomy/category.html` or `taxonomy/tag.html`) - [x] cover - [x] footer - [x] google-analytics - [x] head - [x] header - [x] index - [x] pagination - [x] post - [x] action - [x] category - [x] disqus - [x] gallery - [x] header-cover - [x] header - [x] meta - [x] share-options - [x] tag - [x] script - [x] sidebar --- Misc - [x] Rename `.Site.params.author.picture` to `.Site.Author.picture` - [x] Use new function `md5` for gravatar email - [x] Rename `.Site.params.gravatar_email` to `.Site.Author.gravatar` - [x] Refactor menu to use `Hugo` menu system - [x] Upgrade code to `1.9.1` (currently based on `1.7.1`) - [x] Support non-production and production css/js - [x] TOC ? - [x] Custom tag --- Not supported - Archives pages by years `/archives/2015` - Archives pages by month `/archives/2015/01`
Diffstat (limited to 'package.json')
-rw-r--r--package.json60
1 files changed, 60 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..b1181a9
--- /dev/null
+++ b/package.json
@@ -0,0 +1,60 @@
+{
+ "name": "hexo-theme-tranquilpeak",
+ "version": "1.9.1",
+ "description": "A gorgeous responsive theme for Hexo blog framework",
+ "main": "Gruntfile.js",
+ "scripts": {
+ "start": "grunt default",
+ "prod": "grunt buildProd",
+ "lint": "./node_modules/eslint/bin/eslint.js .",
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/kakawait/hugo-tranquilpeak-theme.git"
+ },
+ "keywords": [
+ "hugo",
+ "blog",
+ "tranquilpeak",
+ "tranquil",
+ "peak"
+ ],
+ "author": "Thibaud Leprêtre <thibaud.lepretre@gmail.com> (https://kakawait.com)",
+ "license": "GPL-3.0",
+ "bugs": {
+ "url": "https://github.com/kakawait/hugo-tranquilpeak-theme/issues"
+ },
+ "homepage": "https://github.com/kakawait/hugo-tranquilpeak-theme",
+ "devDependencies": {
+ "bower": "^1.3.12",
+ "eslint": "^2.11.1",
+ "eslint-config-google": "^0.5.0",
+ "grunt": "^0.4.5",
+ "grunt-bower": "^0.18.0",
+ "grunt-contrib-clean": "~0.5.0",
+ "grunt-contrib-concat": "^0.5.0",
+ "grunt-contrib-copy": "~0.4.1",
+ "grunt-contrib-cssmin": "^0.12.0",
+ "grunt-contrib-uglify": "^0.7.0",
+ "grunt-contrib-watch": "^0.6.1",
+ "grunt-exec": "^0.4.6",
+ "grunt-sails-linker": "^0.10.1",
+ "grunt-sass": "1.1.0",
+ "grunt-sync": "^0.2.3",
+ "grunt-text-replace": "^0.4.0",
+ "include-all": "^0.1.6",
+ "load-grunt-tasks": "~0.2.0",
+ "rand-token": "^0.2.1"
+ },
+ "dependencies": {
+ "async": "^1.5.2",
+ "jsdom": "^8.1.0",
+ "jquery": "^2.2.4",
+ "marked": "^0.3.5",
+ "mkdirp": "^0.5.1",
+ "moment": "^2.13.0",
+ "prompt": "^1.0.0",
+ "strip-indent": "^1.0.1"
+ }
+} \ No newline at end of file