package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@jupyterlab/observables",
  3. "version": "1.0.9",
  4. "description": "Data structures which may be observed for changes.",
  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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  13. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  14. ],
  15. "main": "lib/index.js",
  16. "types": "lib/index.d.ts",
  17. "directories": {
  18. "lib": "lib/"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/jupyterlab/jupyterlab.git"
  23. },
  24. "scripts": {
  25. "build": "tsc",
  26. "clean": "rimraf lib",
  27. "prepublishOnly": "npm run build",
  28. "watch": "tsc -w --listEmittedFiles"
  29. },
  30. "dependencies": {
  31. "@phosphor/algorithm": "^1.1.2",
  32. "@phosphor/coreutils": "^1.3.0",
  33. "@phosphor/disposable": "^1.1.2",
  34. "@phosphor/messaging": "^1.2.2",
  35. "@phosphor/signaling": "^1.2.2"
  36. },
  37. "devDependencies": {
  38. "rimraf": "~2.6.2",
  39. "typescript": "~2.9.2"
  40. }
  41. }