@phtml/markdown
Version:
Write markdown in HTML
66 lines (65 loc) • 1.57 kB
JSON
{
"name": "@phtml/markdown",
"version": "4.1.0",
"description": "Write markdown in HTML",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
"repository": "phtmlorg/phtml-markdown",
"homepage": "https://github.com/phtmlorg/phtml-markdown#readme",
"bugs": "https://github.com/phtmlorg/phtml-markdown/issues",
"main": "index.js",
"module": "index.mjs",
"files": [
"index.js",
"index.js.map",
"index.mjs",
"index.mjs.map"
],
"scripts": {
"build": "rollup --config .rollup.js --silent",
"prepublishOnly": "npm test",
"pretest:tape": "npm run build",
"test": "npm run test:js && npm run test:tape",
"test:js": "eslint src/{*,**/*}.js --cache --ignore-path .gitignore --quiet",
"test:tape": "phtml-tape"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"marked": "^0.6.2",
"phtml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"phtml-tape": "^4.1.0",
"pre-commit": "^1.2.2",
"rollup": "^1.12.1",
"rollup-plugin-babel": "^4.3.2"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2018,
"impliedStrict": true,
"sourceType": "module"
},
"root": true
},
"keywords": [
"phtml",
"html",
"phtml-plugin",
"markdown",
"md"
]
}