{ "name": "markdowny", "version": "0.2.0", "description": "A set of command-line tools for working with Markdown files with YAML headers.", "keywords": [ "markdown" ], "homepage": "https://gitlab.com/mfgames-writing/markdowny#README", "bugs": { "url": "https://gitlab.com/mfgames-writing/markdowny/issues" }, "repository": { "type": "git", "url": "https://gitlab.com/mfgames-writing/markdowny.git" }, "license": "MIT", "author": { "name": "Dylan R. E. Moonfire", "email": "d.moonfire@mfgames.com", "url": "https://mfgames.com/" }, "main": "lib/index", "types": "lib/index.d.ts", "bin": { "markdowny": "bin/markdowny", "markdowny-wc": "bin/markdowny-wc" }, "scripts": { "barrels": "barrelsby --delete --location all --directory src --exclude '(tests|cli|tools)'", "prebuild": "yarn run barrels && yarn run lint && yarn run format && yarn run clean", "build": "tsc", "clean": "rimraf lib", "commitmsg": "commitlint -E GIT_PARAMS", "format": "prettier src --write \"**/*.ts\" --loglevel warn", "lint": "eslint -c .eslintrc.yml src/**/*.ts --fix", "prepack": "yarn run build" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "dependencies": { "add-commas": "0.0.4", "lodash": "^4.16.5", "markdown-table": "^1.0.0", "read-pkg-up": "^4.0.0", "yaml-front-matter": "^3.4.0", "yargs": "^16.2.0" }, "devDependencies": { "@commitlint/cli": "^11.0.0", "@commitlint/config-conventional": "^11.0.0", "@semantic-release/changelog": "^5.0.1", "@semantic-release/git": "^7.0.1", "@semantic-release/npm": "^5.0.1", "@types/lodash": "^4.14.116", "@types/node": "^6.0.46", "@types/read-pkg-up": "^3.0.1", "@types/yaml": "^1.9.7", "@types/yargs": "^11.1.1", "@typescript-eslint/eslint-plugin": "^4.14.2", "@typescript-eslint/parser": "^4.14.2", "barrelsby": "^1.0.2", "commitizen": "^2.10.1", "cz-conventional-changelog": "^2.1.0", "eslint": "^5.3.0", "eslint-plugin-typescript": "^0.12.0", "husky": "^0.14.3", "prettier": "^2.0.5", "rimraf": "^2.6.2", "semantic-release": "^15.9.8", "sort-package-json": "^1.48.1", "typescript": "^4.1.3" }, "release": { "branch": "master", "message": "chore(release): v${nextRelease.version}\n\n${nextRelease.notes}", "verifyConditions": [ "@semantic-release/changelog", "@semantic-release/git" ], "analyzeCommits": [ "@semantic-release/commit-analyzer" ], "prepare": [ "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git" ], "publish": [ "@semantic-release/npm" ], "success": [], "fail": [] } }