package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@jupyterlab/json-extension",
  3. "version": "0.15.7",
  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",
  27. "clean": "rimraf lib",
  28. "prepublishOnly": "npm run build",
  29. "watch": "tsc -w --listEmittedFiles"
  30. },
  31. "dependencies": {
  32. "@jupyterlab/rendermime-interfaces": "^1.0.9",
  33. "@phosphor/coreutils": "^1.3.0",
  34. "@phosphor/widgets": "^1.6.0",
  35. "react": "~16.4.0",
  36. "react-dom": "~16.4.0",
  37. "react-highlighter": "^0.4.0",
  38. "react-json-tree": "^0.11.0"
  39. },
  40. "devDependencies": {
  41. "@types/react": "~16.0.19",
  42. "@types/react-dom": "~16.0.2",
  43. "@types/react-highlighter": "^0.3.1",
  44. "@types/react-json-tree": "^0.6.3",
  45. "rimraf": "~2.6.2",
  46. "typescript": "~2.9.2"
  47. },
  48. "jupyterlab": {
  49. "mimeExtension": true
  50. }
  51. }