package.json 3.6 KB

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