60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "ipynb2html",
|
|
"version": "0.2.0",
|
|
"description": "Convert Jupyter Notebook to static HTML",
|
|
"author": "Jakub Jirutka <jakub@jirutka.cz>",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/jirutka/ipynb2html",
|
|
"bugs": "https://github.com/jirutka/ipynb2html/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jirutka/ipynb2html.git"
|
|
},
|
|
"keywords": [
|
|
"converter",
|
|
"html",
|
|
"ipython",
|
|
"jupyter",
|
|
"notebook"
|
|
],
|
|
"main": "lib/index.js",
|
|
"browser": "dist/ipynb2html.min.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"dist/ipynb2html.min.js*",
|
|
"dist/ipynb2html-full.min.js*",
|
|
"dist/notebook.min.css*",
|
|
"lib",
|
|
"src",
|
|
"styles"
|
|
],
|
|
"scripts": {
|
|
"build": "ttsc --build",
|
|
"bundle": "rollup -c",
|
|
"clean": "rimraf coverage/ dist/ lib/ .eslintcache .tsbuildinfo",
|
|
"lint": "PKGDIR=$PWD; cd ../../ && eslint --cache --ext .ts,.tsx,.js $PKGDIR",
|
|
"minify-css": "csso styles/notebook.css -o dist/notebook.min.css -s dist/notebook.min.css.map",
|
|
"prepublishOnly": "run-p bundle minify-css readme2md",
|
|
"test": "jest --detectOpenHandles --coverage --verbose",
|
|
"readme2md": "../../scripts/adoc2md -a npm-readme ../../README.adoc > README.md",
|
|
"watch-ts": "ttsc --build --watch"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"dependencies": {
|
|
"anser": "^1.4.9",
|
|
"highlightjs": "^9.16.2",
|
|
"ipynb2html-core": "0.2.0",
|
|
"katex": "^0.11.1",
|
|
"marked": "^0.8.2"
|
|
},
|
|
"peerDependencies": {
|
|
"nodom": "^2.3.0"
|
|
},
|
|
"browserslist": [
|
|
">0.5%",
|
|
"Firefox ESR",
|
|
"not dead"
|
|
]
|
|
}
|