markdowny/package.json
2017-10-19 19:21:49 -05:00

44 lines
1.1 KiB
JSON

{
"name": "markdowny",
"version": "0.0.1",
"description": "A set of command-line tools for working with Markdown files with YAML headers.",
"repository": {
"type": "git",
"url": "git+https://git.mfgames.com/author-intrusion/markdowny.git"
},
"main": "src/cli",
"types": "src/cli.d.ts",
"scripts": {
"build": "tsc"
},
"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",
"@types/yargs": "0.0.34",
"add-commas": "0.0.4",
"dotted": "^0.1.1",
"gulp": "^3.9.1",
"lodash": "^4.16.5",
"markdown-table": "^1.0.0",
"typescript": "^2.5.3",
"yaml-front-matter": "^3.4.0",
"yargs": "^6.3.0"
}
}