package.json 963 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@jupyterlab/fileeditor",
  3. "version": "0.10.0",
  4. "description": "JupyterLab - Editor Widget",
  5. "main": "lib/index.js",
  6. "types": "lib/index.d.ts",
  7. "files": [
  8. "lib/*.d.ts",
  9. "lib/*.js",
  10. "style/*.css"
  11. ],
  12. "directories": {
  13. "lib": "lib/"
  14. },
  15. "dependencies": {
  16. "@jupyterlab/apputils": "^0.10.0",
  17. "@jupyterlab/codeeditor": "^0.10.0",
  18. "@jupyterlab/coreutils": "^0.10.0",
  19. "@jupyterlab/docregistry": "^0.10.0",
  20. "@phosphor/coreutils": "^1.2.0"
  21. },
  22. "devDependencies": {
  23. "rimraf": "^2.5.2",
  24. "typescript": "~2.4.1"
  25. },
  26. "scripts": {
  27. "build": "tsc",
  28. "clean": "rimraf lib",
  29. "watch": "tsc -w"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/jupyterlab/jupyterlab.git"
  34. },
  35. "author": "Project Jupyter",
  36. "license": "BSD-3-Clause",
  37. "bugs": {
  38. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  39. },
  40. "homepage": "https://github.com/jupyterlab/jupyterlab"
  41. }