mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"name": "zero-md",
|
|
"version": "2.3.1",
|
|
"description": "Ridiculously simple zero-config markdown displayer",
|
|
"author": "Jason Lee <jason@zerodevx.com>",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"module": "src/index.js",
|
|
"scripts": {
|
|
"dev": "rollup -c -w",
|
|
"test": "npm run dev",
|
|
"lint": "standard --plugin html '**/*.{js,html}' | snazzy",
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "npm run lint && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.8",
|
|
"@babel/preset-env": "^7.15.8",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
"@rollup/plugin-replace": "^3.0.0",
|
|
"chai": "^4.3.4",
|
|
"eslint-plugin-html": "^6.2.0",
|
|
"mocha": "^9.1.2",
|
|
"rollup": "^2.58.0",
|
|
"rollup-plugin-livereload": "^2.0.5",
|
|
"rollup-plugin-serve": "^1.1.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"snazzy": "^9.0.0",
|
|
"standard": "^16.0.4"
|
|
},
|
|
"standard": {
|
|
"ignore": [
|
|
"test/build/",
|
|
"dist/",
|
|
"docs/v1/"
|
|
],
|
|
"globals": [
|
|
"HTMLElement",
|
|
"customElements",
|
|
"CustomEvent",
|
|
"fetch",
|
|
"location",
|
|
"requestAnimationFrame",
|
|
"chai",
|
|
"MutationObserver"
|
|
]
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"license": "ISC",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/zerodevx/zero-md.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/zerodevx/zero-md/issues"
|
|
},
|
|
"homepage": "https://zerodevx.github.io/zero-md/",
|
|
"keywords": [
|
|
"webcomponents",
|
|
"customelements",
|
|
"markdown-to-html",
|
|
"marked",
|
|
"prism"
|
|
]
|
|
}
|