markdowny/package.json
2018-08-11 17:32:06 -05:00

102 lines
2.8 KiB
JSON

{
"name": "markdowny",
"version": "0.0.2",
"description": "A set of command-line tools for working with Markdown files with YAML headers.",
"repository": {
"type": "git",
"url": "https://gitlab.com/mfgames-writing/markdowny.git"
},
"main": "lib/index",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --build",
"barrels": "barrelsby --delete --location all --directory src --exclude '(tests|cli|tools)'",
"lint": "eslint -c .eslintrc.yml src/**/*.ts --fix",
"format": "tsfmt -r",
"clean": "rimraf lib",
"prebuild": "npm run barrels && npm run lint && npm run format && npm run clean",
"prepack": "npm run build",
"commitmsg": "commitlint -E GIT_PARAMS"
},
"keywords": [
"markdown"
],
"author": {
"email": "d.moonfire@mfgames.com",
"name": "Dylan R. E. Moonfire",
"url": "https://mfgames.com/"
},
"license": "MIT",
"bugs": {
"url": "https://git.mfgames.com/author-intrusion/markdowny/issues"
},
"homepage": "https://git.mfgames.com/author-intrusion/markdowny#README",
"bin": {
"markdowny": "./bin/markdowny",
"markdowny-wc": "./bin/markdowny-wc"
},
"dependencies": {
"@types/node": "^6.0.46",
"add-commas": "0.0.4",
"dotted": "^0.1.1",
"gulp": "^3.9.1",
"lodash": "^4.16.5",
"markdown-table": "^1.0.0",
"read-pkg-up": "^4.0.0",
"yaml-front-matter": "^3.4.0",
"yargs": "^12.0.1"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.1",
"@semantic-release/npm": "^5.0.1",
"@types/lodash": "^4.14.116",
"@types/read-pkg-up": "^3.0.1",
"@types/yargs": "^11.1.1",
"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",
"rimraf": "^2.6.2",
"semantic-release": "^15.9.8",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0",
"typescript-formatter": "^7.2.2"
},
"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": []
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}