ipynb2html/package.json
2019-10-14 01:06:27 +02:00

72 lines
1.9 KiB
JSON

{
"name": "ipynb2html",
"version": "0.1.0-beta.5",
"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",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "ttsc",
"clean": "rimraf coverage/ dist/ lib/ *.log",
"lint": "eslint --ext .ts,.tsx,.js .",
"test": "jest --detectOpenHandles --coverage --verbose",
"watch-ts": "ttsc -w"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"anser": "^1.4.9",
"highlightjs": "^9.12.0",
"katex": "^0.11.0",
"marked": "^0.7.0",
"nodom": "^2.4.0"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/highlightjs": "^9.12.0",
"@types/jest": "^24.0.18",
"@types/katex": "^0.10.2",
"@types/marked": "^0.6.5",
"@types/node": "^10.13.0",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"arrify": "^2.0.1",
"dedent": "^0.7.0",
"eslint": "^6.5.1",
"eslint-config-standard-with-typescript": "^9.0.0",
"eslint-import-resolver-ts": "^0.4.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"jest-chain": "^1.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"ts-transformer-export-default-name": "^0.1.0",
"ts-transformer-inline-file": "^0.1.1",
"ttypescript": "^1.5.7",
"typescript": "~3.5.2"
}
}