加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 2.84 KB
一键复制 编辑 原始数据 按行查看 历史
田小777 提交于 2020-02-02 23:51 . release: v2.2.6
{
"name": "jekyll-text-theme",
"version": "2.2.6",
"author": "Tian Qi",
"license": "MIT",
"keywords": [
"jekyll",
"jekyll-theme",
"jekyll-template"
],
"homepage": "https://github.com/kitian616/jekyll-TeXt-theme",
"description": "A super customizable Jekyll theme for personal site, team site, blog, project, documentation, etc.",
"repository": {
"type": "git",
"url": "git+https://github.com/kitian616/jekyll-TeXt-theme.git"
},
"bugs": {
"url": "https://github.com/kitian616/jekyll-TeXt-theme/issues"
},
"scripts": {
"build": "cross-env JEKYLL_ENV=production bundle exec jekyll build",
"serve": "bundle exec jekyll serve -H 0.0.0.0",
"Gemfile.lock": "docker run --rm -v \"$PWD\":/usr/src/app -w /usr/src/app ruby:2.6 bundle install",
"docker-dev:build-image": "docker-compose -f ./docker/docker-compose.build-image.yml build",
"docker-dev:default": "docker-compose -f ./docker/docker-compose.default.yml up",
"docker-dev:dev": "docker-compose -f ./docker/docker-compose.dev.yml up",
"docker-dev:demo-dev": "docker-compose -f ./docker/docker-compose.demo.yml up",
"docker-dev:demo-beta": "cross-env JEKYLL_ENV=beta docker-compose -f ./docker/docker-compose.demo.yml up",
"docker-dev:demo-prod": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.demo.yml up",
"docker-prod:build": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml build",
"docker-prod:serve": "cross-env JEKYLL_ENV=production docker-compose -f ./docker/docker-compose.prod.yml up",
"default": "bundle exec jekyll serve -H 0.0.0.0 -t",
"dev": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.dev.yml",
"demo-dev": "bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml",
"demo-beta": "cross-env JEKYLL_ENV=beta bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml",
"demo-prod": "cross-env JEKYLL_ENV=production bundle exec jekyll serve -H 0.0.0.0 -t --config ./docs/_config.yml",
"eslint": "eslint \"_includes/**/*.js\"",
"eslint-fix": "eslint \"_includes/**/*.js\" --fix",
"stylelint": "stylelint --syntax scss \"_sass/**/*.scss\"",
"stylelint-fix": "stylelint --syntax scss \"_sass/**/*.scss\" --fix",
"gem-build": "rm -fv jekyll-text-theme-*.gem && gem build jekyll-text-theme.gemspec",
"gem-push": "gem push jekyll-text-theme-*.gem"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.1",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化