package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "@jupyterlab/json-extension",
  3. "version": "1.0.0-alpha.3",
  4. "description": "JupyterLab - JSON Renderer",
  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",
  13. "lib/*.js",
  14. "style/*"
  15. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc -b",
  27. "clean": "rimraf lib",
  28. "docs": "typedoc --options tdoptions.json --theme ../../typedoc-theme src",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -b --watch"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/rendermime-interfaces": "^1.3.0-alpha.3",
  34. "@jupyterlab/ui-components": "^1.0.0-alpha.3",
  35. "@phosphor/coreutils": "^1.3.0",
  36. "@phosphor/messaging": "^1.2.2",
  37. "@phosphor/widgets": "^1.6.0",
  38. "react": "~16.4.2",
  39. "react-dom": "~16.4.2",
  40. "react-highlighter": "^0.4.0",
  41. "react-json-tree": "^0.11.0"
  42. },
  43. "devDependencies": {
  44. "@types/react": "~16.4.13",
  45. "@types/react-dom": "~16.0.7",
  46. "@types/react-highlighter": "^0.3.1",
  47. "@types/react-json-tree": "^0.6.3",
  48. "rimraf": "~2.6.2",
  49. "typedoc": "^0.14.2",
  50. "typescript": "~3.3.1"
  51. },
  52. "publishConfig": {
  53. "access": "public"
  54. },
  55. "gitHead": "31f68f6d1717b58c344a5fb4f4baf3b123b7c75c",
  56. "jupyterlab": {
  57. "mimeExtension": true
  58. }
  59. }