UNPKG

hexo-generator-touhou

Version:
68 lines (67 loc) 1.7 kB
{ "name": "hexo-generator-touhou", "version": "0.0.4", "description": "Touhou generator plugin for Hexo.", "main": "index.js", "files": [ "index.js", "lib/" ], "directories": { "lib": "lib" }, "scripts": { "lint:script": "eslint --ignore-pattern dist .", "lint:style": "stylelint **/*.css", "lint": "npm run lint:script && npm run lint:style", "test": "npm run lint", "format": "prettier -w ." }, "repository": { "type": "git", "url": "git+https://github.com/akijoey/hexo-generator-touhou.git" }, "keywords": [ "hexo", "touhou" ], "author": "AkiJoey <akijoey@akijoey.com> (https://akijoey.com)", "license": "MIT", "bugs": { "url": "https://github.com/akijoey/hexo-generator-touhou/issues" }, "homepage": "https://github.com/akijoey/hexo-generator-touhou#readme", "devDependencies": { "@akijoey/eslint-config": "latest", "@akijoey/prettier-config": "latest", "@akijoey/stylelint-config": "latest", "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "eslint": "^7.14.0", "husky": "^4.3.0", "lint-staged": "^10.5.2", "prettier": "^2.2.1", "stylelint": "^13.8.0" }, "dependencies": { "ejs": "^3.1.5" }, "stylelint": { "extends": "@akijoey/stylelint-config" }, "prettier": "@akijoey/prettier-config", "commitlint": { "extends": "@commitlint/config-conventional" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.js": "eslint --fix", "*.css": "stylelint --fix", "*.{js,css,json,yml,md}": "prettier -w" } }