markdowny/package.json

73 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2016-11-01 00:25:37 +00:00
{
"name": "markdowny",
2023-01-27 04:50:56 +00:00
"version": "1.1.0",
2016-11-01 00:25:37 +00:00
"description": "A set of command-line tools for working with Markdown files with YAML headers.",
2021-02-04 05:00:02 +00:00
"keywords": [
"markdown"
],
"homepage": "https://src.mfgames.com/mfgames-writing-js/markdowny#README",
2021-02-04 05:00:02 +00:00
"bugs": {
"url": "https://src.mfgames.com/mfgames-writing-js/markdowny/issues"
2021-02-04 05:00:02 +00:00
},
2016-11-01 00:25:37 +00:00
"repository": {
"type": "git",
"url": "https://src.mfgames.com/mfgames-writing-js/markdowny.git"
2016-11-01 00:25:37 +00:00
},
2021-02-04 05:00:02 +00:00
"license": "MIT",
"author": {
"name": "Dylan R. E. Moonfire",
"email": "d.moonfire@mfgames.com",
"url": "https://mfgames.com/"
},
2018-08-11 22:32:06 +00:00
"main": "lib/index",
"types": "lib/index.d.ts",
2021-02-04 05:00:02 +00:00
"bin": {
"markdowny": "bin/markdowny",
"markdowny-wc": "bin/markdowny-wc"
},
2016-11-01 00:25:37 +00:00
"scripts": {
2018-08-11 22:32:06 +00:00
"barrels": "barrelsby --delete --location all --directory src --exclude '(tests|cli|tools)'",
"prebuild": "run-s barrels format lint clean",
2021-02-04 05:00:02 +00:00
"build": "tsc",
"clean": "rimraf lib *.tsbuildinfo",
2021-02-04 05:15:00 +00:00
"format": "prettier src --write \"**/*.ts\" --loglevel warn",
2021-02-04 05:00:02 +00:00
"lint": "eslint -c .eslintrc.yml src/**/*.ts --fix",
2023-01-26 14:19:00 +00:00
"prepack": "npm run build",
2023-01-26 04:23:33 +00:00
"prepare": "husky install"
2016-11-01 00:25:37 +00:00
},
"dependencies": {
"add-commas": "0.0.4",
"handlebars": "^4.7.7",
2016-11-01 00:25:37 +00:00
"lodash": "^4.16.5",
"markdown-table": "^1.0.0",
2018-08-11 22:32:06 +00:00
"read-pkg-up": "^4.0.0",
2016-11-01 00:25:37 +00:00
"yaml-front-matter": "^3.4.0",
2021-02-04 05:15:00 +00:00
"yargs": "^16.2.0"
2018-08-11 22:32:06 +00:00
},
"devDependencies": {
2023-01-26 04:23:33 +00:00
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@semantic-release/changelog": "^6.0.2",
2023-01-26 14:19:00 +00:00
"@semantic-release/exec": "^6.0.3",
2023-01-26 04:23:33 +00:00
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
2018-08-11 22:32:06 +00:00
"@types/lodash": "^4.14.116",
2021-02-04 05:15:00 +00:00
"@types/node": "^6.0.46",
2018-08-11 22:32:06 +00:00
"@types/read-pkg-up": "^3.0.1",
"@types/yaml": "^1.9.7",
2018-08-11 22:32:06 +00:00
"@types/yargs": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
2018-08-11 22:32:06 +00:00
"barrelsby": "^1.0.2",
"eslint": "^8.0.0",
2018-08-11 22:32:06 +00:00
"eslint-plugin-typescript": "^0.12.0",
2023-01-26 04:23:33 +00:00
"husky": "^8.0.3",
2023-01-26 14:19:00 +00:00
"npm-run-all": "^4.1.5",
2023-01-26 04:23:33 +00:00
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"semantic-release": "^19.0.5",
"sort-package-json": "^2.2.0",
"typescript": "4.9.4"
2016-11-01 00:25:37 +00:00
}
}