package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {
  2. "name": "jupyterlab",
  3. "version": "0.0.9",
  4. "description": "A computational environment 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. "diff-match-patch": "^1.0.0",
  12. "es6-promise": "^3.2.1",
  13. "file-loader": "^0.8.5",
  14. "jquery": "^2.2.0",
  15. "jquery-ui": "^1.10.5",
  16. "jupyter-js-services": "^0.10.5",
  17. "jupyter-js-utils": "^0.4.0",
  18. "jupyter-js-widgets": "2.0.0-dev.0",
  19. "marked": "^0.3.5",
  20. "moment": "^2.11.2",
  21. "phosphide": "^0.9.4",
  22. "phosphor-arrays": "^1.0.6",
  23. "phosphor-codemirror": "^0.0.1",
  24. "phosphor-di": "^0.9.0",
  25. "phosphor-disposable": "^1.0.5",
  26. "phosphor-domutil": "^1.2.0",
  27. "phosphor-dragdrop": "^0.9.0",
  28. "phosphor-keymap": "^0.8.0",
  29. "phosphor-menus": "^1.0.0-rc.1",
  30. "phosphor-messaging": "^1.0.6",
  31. "phosphor-observablelist": "^1.0.0-beta",
  32. "phosphor-panel": "^1.0.0-rc.1",
  33. "phosphor-properties": "^2.0.0",
  34. "phosphor-signaling": "^1.2.0",
  35. "phosphor-tabs": "^1.0.0-rc.2",
  36. "phosphor-widget": "^1.0.0-rc.1",
  37. "sanitizer": "^0.1.3",
  38. "simulate-event": "^1.2.0",
  39. "xterm": "^0.33.0"
  40. },
  41. "devDependencies": {
  42. "concurrently": "^2.0.0",
  43. "css-loader": "^0.23.1",
  44. "expect.js": "^0.3.1",
  45. "file-loader": "^0.8.5",
  46. "fs-extra": "^0.26.4",
  47. "istanbul-instrumenter-loader": "^0.1.3",
  48. "json-loader": "^0.5.4",
  49. "karma": "^0.13.19",
  50. "karma-chrome-launcher": "^0.2.2",
  51. "karma-coverage": "^0.5.3",
  52. "karma-firefox-launcher": "^0.1.7",
  53. "karma-ie-launcher": "^0.2.0",
  54. "karma-mocha": "^0.2.1",
  55. "karma-mocha-reporter": "^1.1.5",
  56. "mocha": "^2.3.4",
  57. "raw-loader": "^0.5.1",
  58. "rimraf": "^2.5.0",
  59. "style-loader": "^0.13.0",
  60. "typedoc": "^0.4.2",
  61. "typescript": "^1.8.0",
  62. "url-loader": "^0.5.7",
  63. "watch": "^0.17.1",
  64. "webpack": "^1.12.11"
  65. },
  66. "scripts": {
  67. "build": "npm run build:src",
  68. "build:examples": "node scripts/buildexamples.js",
  69. "build:src": "tsc --project src && node scripts/copyfiles.js",
  70. "build:test": "tsc --project test/src && webpack --config test/webpack.conf.js",
  71. "build:serverextension": "cd jupyterlab && npm run build && cd ..",
  72. "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
  73. "clean:examples": "node scripts/cleanexamples.js",
  74. "docs": "typedoc --mode modules --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
  75. "postinstall": "npm dedupe",
  76. "prepublish": "npm run build",
  77. "test": "npm run test:firefox",
  78. "test:chrome": "npm run build:test && karma start --browsers=Chrome test/karma.conf.js",
  79. "test:coverage": "npm run build:test && webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
  80. "test:debug": "npm run build:test && karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
  81. "test:firefox": "npm run build:test && karma start --browsers=Firefox test/karma.conf.js",
  82. "test:ie": "npm run build:test && karma start --browsers=IE test/karma.conf.js",
  83. "watch": "watch 'npm run build' src --wait 10",
  84. "watch:serverextension": "watch 'npm run build:serverextension' src --wait 10",
  85. "watch:test": "watch 'npm run build && npm test' src test/src --wait 10"
  86. },
  87. "repository": {
  88. "type": "git",
  89. "url": "https://github.com/jupyter/jupyterlab"
  90. },
  91. "keywords": [
  92. "jupyter",
  93. "jupyterlab"
  94. ],
  95. "files": [
  96. "lib/*.css",
  97. "lib/*.d.ts",
  98. "lib/*.js",
  99. "lib/**/*.css",
  100. "lib/**/*.d.ts",
  101. "lib/**/*.js",
  102. "lib/**/*.svg"
  103. ],
  104. "author": "Project Jupyter",
  105. "license": "BSD-3-Clause",
  106. "bugs": {
  107. "url": "https://github.com/jupyter/jupyterlab/issues"
  108. },
  109. "homepage": "https://github.com/jupyter/jupyterlab"
  110. }