showdown-toc-export
Version:
A showdown extension to output toc info.
65 lines (64 loc) • 1.58 kB
JSON
{
"name": "showdown-toc-export",
"version": "1.0.3",
"description": "A showdown extension to output toc info.",
"main": "dist/index.js",
"unpkg": "dist/index.umd.min.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "father build",
"test": "father test",
"ci": "father test --coverage",
"lint-staged": "lint-staged",
"lint-staged:ts": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --fix --cache --format=pretty **/*.ts",
"lint:ts": "eslint --cache --format=pretty **/*.ts"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,json}": [
"prettier --write",
"git add"
],
"**/*.ts": "npm run lint-staged:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indiana-ruby/showdown-toc-export.git"
},
"keywords": [
"showdown-extension",
"showdown",
"markdown",
"markdown-toc"
],
"author": "cheng.liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/indiana-ruby/showdown-toc-export/issues"
},
"homepage": "https://github.com/indiana-ruby/showdown-toc-export#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/showdown": "^1.9.3",
"@umijs/fabric": "^1.2.1",
"eslint": "^6.6.0",
"father": "^2.24.1",
"husky": "^3.0.9",
"lint-staged": "^9.0.0",
"prettier": "^1.19.1",
"showdown": "^1.9.1",
"typescript": "^3.7.2"
},
"peerDependencies": {
"showdown": "^1.9.1"
}
}