UNPKG

tsl-markdown-loader

Version:

tsl readme loader

101 lines (100 loc) 2.32 kB
{ "name": "tsl-markdown-loader", "version": "2.0.3", "description": "tsl readme loader", "main": "lib/index.js", "scripts": { "test": "jest", "build": "rm -rf lib && tsc --build" }, "keywords": [ "tsl", "readme", "webpack", "loader", "markdown", "markdown-loader" ], "publishConfig": { "access": "public" }, "files": [ "lib", "template", "tsconfig.json" ], "engines": { "node": ">=10" }, "author": "miya-fe", "license": "MIT", "repository": "http://192.168.171.152:7964/tsl-front/tsl-markdown-loader", "peerDependencies": {}, "dependencies": { "fast-glob": "^3.2.11", "fs-extra": "^10.0.0", "handlebars": "^4.7.7", "highlight.js": "^10.7.3", "markdown-it": "^11.0.0", "markdown-it-anchor": "^5.3.0", "transliteration": "^2.1.11", "webpack": "^5.37.1", "webpack-sources": "^1.4.3" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@ls-lint/ls-lint": "^1.9.2", "@types/fs-extra": "^9.0.11", "@types/highlight.js": "^9.12.4", "@types/jest": "^26.0.23", "@types/markdown-it": "^10.0.1", "@types/markdown-it-anchor": "^4.0.4", "@types/node": "^14.0.23", "@types/transliteration": "^1.6.6", "@types/webpack": "5", "eslint-config-tsl-standard": "^1.0.0", "husky": "^4.3.0", "jest": "^26.6.3", "lint-staged": "^10.4.0", "prettier": "^2.3.0", "ts-jest": "^26.5.6", "ts-node-dev": "^1.1.6", "typescript": "^4.2.4" }, "husky": { "hooks": { "pre-commit": "lint-staged && ls-lint", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.{js,jsx,vue,ts,tsx}": [ "prettier --write", "eslint --fix", "git add" ], "*.md": "prettier --write" }, "eslintConfig": { "root": true, "extends": [ "tsl-standard/ts" ], "rules": { "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-ts-ignore": "off", "no-useless-escape": "warn" } }, "prettier": { "printWidth": 100, "tabWidth": 2, "semi": true, "trailingComma": "none", "singleQuote": false, "endOfLine": "lf", "proseWrap": "never", "jsxBracketSameLine": true } }