package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@jupyterlab/rendermime-extension",
  3. "version": "0.11.0-1",
  4. "description": "A rendermime extension for JupyterLab",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  13. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  14. ],
  15. "main": "lib/index.js",
  16. "types": "lib/index.d.ts",
  17. "directories": {
  18. "lib": "lib/"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/jupyterlab/jupyterlab.git"
  23. },
  24. "scripts": {
  25. "build": "tsc",
  26. "clean": "rimraf lib",
  27. "prepublishOnly": "npm run build",
  28. "watch": "tsc -w --listEmittedFiles"
  29. },
  30. "dependencies": {
  31. "@jupyterlab/application": "^0.17.0-1",
  32. "@jupyterlab/docmanager": "^0.17.0-1",
  33. "@jupyterlab/rendermime": "^0.17.0-1"
  34. },
  35. "devDependencies": {
  36. "rimraf": "~2.6.2",
  37. "typescript": "~2.9.2"
  38. },
  39. "jupyterlab": {
  40. "extension": true
  41. }
  42. }