Ghost_Ruby_Theme/package.json

107 lines
2.7 KiB
JSON
Raw Normal View History

2019-04-29 19:46:11 +03:00
{
"name": "ruby",
2020-09-30 10:29:12 +03:00
"description": "A Ghost theme",
2020-10-19 04:07:54 +03:00
"version": "1.0.0",
"engines": {
2021-03-04 05:16:27 +02:00
"ghost": ">=4.0.0",
"ghost-api": "v4"
},
"license": "MIT",
"author": {
"name": "Ghost Foundation",
"email": "hello@ghost.org",
"url": "https://ghost.org"
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"config": {
"posts_per_page": 9,
"image_sizes": {
"xs": {
"width": 150
},
"s": {
"width": 400
},
"m": {
"width": 750
},
"l": {
"width": 960
},
"xl": {
"width": 1140
},
"xxl": {
"width": 1920
}
2021-11-05 10:21:16 +02:00
},
"custom": {
"title_font": {
"type": "select",
"options": ["Modern sans-serif", "Elegant serif"],
"default": "Modern sans-serif"
},
"body_font": {
"type": "select",
"options": ["Modern sans-serif", "Elegant serif"],
"default": "Modern sans-serif"
},
"show_sidebar_on_homepage": {
"type": "boolean",
"default": true,
"group": "homepage"
},
"show_related_posts": {
"type": "boolean",
"default": true,
"group": "post"
},
"show_sidebar_on_post": {
"type": "boolean",
"default": true,
"group": "post"
},
"show_share_links": {
"type": "boolean",
"default": true,
"group": "post"
},
"show_author": {
"type": "boolean",
"default": true,
"group": "post"
}
}
},
"scripts": {
"dev": "gulp",
"test": "gscan .",
2021-01-11 05:31:12 +02:00
"test:ci": "gscan --fatal --verbose .",
2020-09-30 10:08:26 +03:00
"lint": "gulp lint",
"zip": "gulp zip"
},
"devDependencies": {
"autoprefixer": "10.4.0",
2021-05-20 05:56:45 +03:00
"beeper": "2.1.0",
2021-11-08 02:00:41 +02:00
"cssnano": "5.0.10",
2021-11-02 18:58:48 +02:00
"gscan": "4.10.1",
"gulp": "4.0.2",
"gulp-concat": "2.6.1",
"gulp-livereload": "4.0.2",
"gulp-postcss": "9.0.1",
2021-01-11 05:05:45 +02:00
"gulp-stylelint": "13.0.0",
"gulp-uglify": "3.0.2",
2021-03-10 10:25:03 +02:00
"gulp-zip": "5.1.0",
2021-10-21 16:58:35 +03:00
"postcss": "8.3.11",
"postcss-easy-import": "3.0.0",
"pump": "3.0.0",
2021-10-26 18:21:04 +03:00
"stylelint": "14.0.1",
"stylelint-config-standard": "23.0.0",
"stylelint-order": "5.0.0"
2019-04-29 19:46:11 +03:00
}
}