package.json 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "jupyter-js-ui",
  3. "version": "0.10.1",
  4. "description": "JavaScript UI Components for Jupyter",
  5. "main": "lib/index.js",
  6. "typings": "lib/index.d.ts",
  7. "dependencies": {
  8. "ansi_up": "^1.3.0",
  9. "backbone": "^1.2.0",
  10. "codemirror": "^5.12.0",
  11. "jupyter-js-services": "^0.8.0",
  12. "jupyter-js-utils": "^0.4.0",
  13. "jupyter-js-widgets": "0.0.17",
  14. "marked": "^0.3.5",
  15. "moment": "^2.11.2",
  16. "phosphor-arrays": "^1.0.6",
  17. "phosphor-domutil": "^1.2.0",
  18. "phosphor-dragdrop": "^0.9.0",
  19. "phosphor-menus": "^1.0.0-rc.1",
  20. "phosphor-messaging": "^1.0.6",
  21. "phosphor-panel": "^1.0.0-rc.1",
  22. "phosphor-properties": "^2.0.0",
  23. "phosphor-widget": "^1.0.0-rc.1",
  24. "xterm": "^0.33.0"
  25. },
  26. "devDependencies": {
  27. "concurrently": "^2.0.0",
  28. "css-loader": "^0.23.1",
  29. "expect.js": "^0.3.1",
  30. "file-loader": "^0.8.5",
  31. "fs-extra": "^0.26.4",
  32. "istanbul-instrumenter-loader": "^0.1.3",
  33. "json-loader": "^0.5.4",
  34. "karma": "^0.13.19",
  35. "karma-chrome-launcher": "^0.2.2",
  36. "karma-coverage": "^0.5.3",
  37. "karma-firefox-launcher": "^0.1.7",
  38. "karma-ie-launcher": "^0.2.0",
  39. "karma-mocha": "^0.2.1",
  40. "karma-mocha-reporter": "^1.1.5",
  41. "mocha": "^2.3.4",
  42. "rimraf": "^2.5.0",
  43. "style-loader": "^0.13.0",
  44. "typedoc": "^0.3.12",
  45. "typescript": "^1.7.5",
  46. "url-loader": "^0.5.7",
  47. "watch": "^0.17.1",
  48. "webpack": "^1.12.11"
  49. },
  50. "scripts": {
  51. "clean": "rimraf docs && rimraf lib && rimraf test/build",
  52. "clean:examples": "node scripts/cleanexamples.js",
  53. "build:examples": "node scripts/buildexamples.js",
  54. "build:src": "tsc --project src && node scripts/copycss.js",
  55. "build:test": "tsc --project test/src && webpack --config test/webpack.conf.js",
  56. "build": "npm run build:src && npm run build:test",
  57. "docs": "typedoc --options scripts/tdoptions.json",
  58. "prepublish": "npm run build",
  59. "postinstall": "npm dedupe",
  60. "test:chrome": "karma start --browsers=Chrome test/karma.conf.js",
  61. "test:coverage": "webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
  62. "test:firefox": "karma start --browsers=Firefox test/karma.conf.js",
  63. "test:ie": "karma start --browsers=IE test/karma.conf.js",
  64. "test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
  65. "test": "npm run test:firefox",
  66. "watch:examples": "watch 'npm run build && npm run build:examples' src --wait 10",
  67. "watch": "watch 'npm run build' src"
  68. },
  69. "repository": {
  70. "type": "git",
  71. "url": "https://github.com/jupyter/jupyter-js-ui"
  72. },
  73. "keywords": [
  74. "jupyter",
  75. "filebrowser",
  76. "terminal"
  77. ],
  78. "files": [
  79. "lib/*.css",
  80. "lib/*.d.ts",
  81. "lib/*.js",
  82. "lib/**/*.css",
  83. "lib/**/*.d.ts",
  84. "lib/**/*.js"
  85. ],
  86. "author": "Project Jupyter",
  87. "license": "BSD-3-Clause",
  88. "bugs": {
  89. "url": "https://github.com/jupyter/jupyter-js-ui/issues"
  90. },
  91. "homepage": "https://github.com/jupyter/jupyter-js-ui"
  92. }