package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "jupyter-js-ui",
  3. "version": "0.0.1",
  4. "description": "JavaScript UI Components for Jupyter",
  5. "main": "lib/index.js",
  6. "typings": "lib/index.d.ts",
  7. "dependencies": {
  8. "jupyter-js-services": "^0.5.4",
  9. "jupyter-js-utils": "^0.3.3",
  10. "moment": "^2.11.2",
  11. "phosphor-arrays": "^1.0.6",
  12. "phosphor-codemirror": "0.0.1",
  13. "phosphor-domutil": "^1.2.0",
  14. "phosphor-dragdrop": "^0.9.0",
  15. "phosphor-menus": "^1.0.0-rc.1",
  16. "phosphor-messaging": "^1.0.6",
  17. "phosphor-panel": "^1.0.0-rc.1",
  18. "phosphor-properties": "^2.0.0",
  19. "phosphor-widget": "^1.0.0-rc.1",
  20. "term.js": "0.0.7"
  21. },
  22. "devDependencies": {
  23. "css-loader": "^0.23.1",
  24. "expect.js": "^0.3.1",
  25. "file-loader": "^0.8.5",
  26. "fs-extra": "^0.26.4",
  27. "istanbul-instrumenter-loader": "^0.1.3",
  28. "json-loader": "^0.5.4",
  29. "karma": "^0.13.19",
  30. "karma-chrome-launcher": "^0.2.2",
  31. "karma-coverage": "^0.5.3",
  32. "karma-firefox-launcher": "^0.1.7",
  33. "karma-ie-launcher": "^0.2.0",
  34. "karma-mocha": "^0.2.1",
  35. "karma-mocha-reporter": "^1.1.5",
  36. "mocha": "^2.3.4",
  37. "rimraf": "^2.5.0",
  38. "style-loader": "^0.13.0",
  39. "typedoc": "^0.3.12",
  40. "typescript": "^1.7.5",
  41. "url-loader": "^0.5.7",
  42. "watch": "^0.17.1",
  43. "webpack": "^1.12.11"
  44. },
  45. "scripts": {
  46. "clean": "rimraf lib",
  47. "clean:examples": "node scripts/cleanexamples.js",
  48. "build:example": "cd examples/$EXAMPLE && npm run update && npm run build",
  49. "build:examples": "node scripts/buildexamples.js",
  50. "build": "tsc --project src && node scripts/copycss.js",
  51. "postinstall": "npm dedupe",
  52. "watch:example": "watch 'npm run build && npm run build:example' src --wait 10",
  53. "watch": "watch 'npm run build' src"
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "https://github.com/jupyter/jupyter-js-ui"
  58. },
  59. "keywords": [
  60. "jupyter",
  61. "filebrowser",
  62. "terminal"
  63. ],
  64. "files": [
  65. "lib/*.css",
  66. "lib/*.d.ts",
  67. "lib/*.js",
  68. "lib/**/*.css",
  69. "lib/**/*.d.ts",
  70. "lib/**/*.js"
  71. ],
  72. "author": "Project Jupyter",
  73. "license": "BSD-3-Clause",
  74. "bugs": {
  75. "url": "https://github.com/jupyter/jupyter-js-ui/issues"
  76. },
  77. "homepage": "https://github.com/jupyter/jupyter-js-ui"
  78. }