package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@jupyterlab/coreutils",
  3. "version": "0.13.0",
  4. "description": "JupyterLab - Core Utilities",
  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",
  13. "lib/*.js.map",
  14. "lib/*.js"
  15. ],
  16. "main": "lib/index.js",
  17. "types": "lib/index.d.ts",
  18. "directories": {
  19. "lib": "lib/"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/jupyterlab/jupyterlab.git"
  24. },
  25. "scripts": {
  26. "build": "tsc",
  27. "clean": "rimraf lib",
  28. "prepublishOnly": "npm run build",
  29. "watch": "tsc -w"
  30. },
  31. "dependencies": {
  32. "@phosphor/algorithm": "^1.1.2",
  33. "@phosphor/coreutils": "^1.3.0",
  34. "@phosphor/disposable": "^1.1.2",
  35. "@phosphor/signaling": "^1.2.2",
  36. "ajv": "~5.1.6",
  37. "comment-json": "^1.1.3",
  38. "minimist": "~1.2.0",
  39. "moment": "~2.17.1",
  40. "path-posix": "~1.0.0",
  41. "url-parse": "~1.1.9"
  42. },
  43. "devDependencies": {
  44. "@types/comment-json": "^1.1.0",
  45. "@types/minimist": "~1.2.0",
  46. "rimraf": "~2.6.2",
  47. "typescript": "~2.6.2"
  48. }
  49. }