mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 22:58:52 +02:00

git-subtree-dir: packages/turndown-plugin-gfm git-subtree-mainline: ebebdd0b07edda953fdc71b0003c223a6531e05c git-subtree-split: 0f43299c17108e9508e7e6237369e86f504ea60a
44 lines
1.4 KiB
JSON
44 lines
1.4 KiB
JSON
{
|
|
"name": "joplin-turndown-plugin-gfm",
|
|
"description": "Turndown plugin to add GitHub Flavored Markdown extensions.",
|
|
"version": "1.0.12",
|
|
"author": "Dom Christie",
|
|
"main": "lib/turndown-plugin-gfm.cjs.js",
|
|
"module": "lib/turndown-plugin-gfm.es.js",
|
|
"jsnext:main": "lib/turndown-plugin-gfm.es.js",
|
|
"devDependencies": {
|
|
"browserify": "^14.5.0",
|
|
"rollup": "^0.50.0",
|
|
"standard": "^10.0.3",
|
|
"turndown": "4.0.1",
|
|
"turndown-attendant": "0.0.2"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"dist"
|
|
],
|
|
"keywords": [
|
|
"turndown",
|
|
"turndown-plugin",
|
|
"html-to-markdown",
|
|
"html",
|
|
"markdown",
|
|
"github-flavored-markdown",
|
|
"gfm"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/laurent22/joplin-turndown-plugin-gfm.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build-cjs && npm run build-es && npm run build-iife",
|
|
"build-cjs": "rollup -c config/rollup.config.cjs.js && rollup -c config/rollup.config.browser.cjs.js",
|
|
"build-es": "rollup -c config/rollup.config.es.js && rollup -c config/rollup.config.browser.es.js",
|
|
"build-iife": "rollup -c config/rollup.config.iife.js",
|
|
"build-test": "browserify test/turndown-plugin-gfm-test.js --outfile test/turndown-plugin-gfm-test.browser.js",
|
|
"prepublish": "npm run build",
|
|
"test": "npm run build && standard ./src/**/*.js && node test/turndown-plugin-gfm-test.js"
|
|
}
|
|
}
|