package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@jupyterlab/csvviewer",
  3. "version": "0.13.0",
  4. "description": "JupyterLab - CSV Widget",
  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.map",
  14. "lib/*.js",
  15. "style/*.css"
  16. ],
  17. "main": "lib/index.js",
  18. "types": "lib/index.d.ts",
  19. "directories": {
  20. "lib": "lib/"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/jupyterlab/jupyterlab.git"
  25. },
  26. "scripts": {
  27. "build": "tsc",
  28. "clean": "rimraf lib",
  29. "prepublishOnly": "npm run build",
  30. "watch": "tsc -w"
  31. },
  32. "dependencies": {
  33. "@jupyterlab/apputils": "^0.13.0",
  34. "@jupyterlab/coreutils": "^0.13.0",
  35. "@jupyterlab/docregistry": "^0.13.0",
  36. "@phosphor/algorithm": "^1.1.2",
  37. "@phosphor/coreutils": "^1.3.0",
  38. "@phosphor/datagrid": "^0.1.5",
  39. "@phosphor/messaging": "^1.2.2",
  40. "@phosphor/signaling": "^1.2.2",
  41. "@phosphor/widgets": "^1.5.0",
  42. "d3-dsv": "~1.0.7"
  43. },
  44. "devDependencies": {
  45. "@types/d3-dsv": "~1.0.30",
  46. "rimraf": "~2.6.2",
  47. "typescript": "~2.6.2"
  48. }
  49. }