package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@elyra/services",
  3. "version": "3.9.0-dev",
  4. "description": "JupyterLab - Utilities for use in elyra",
  5. "keywords": [
  6. "jupyter",
  7. "jupyterlab"
  8. ],
  9. "homepage": "https://github.com/elyra-ai/elyra",
  10. "bugs": {
  11. "url": "https://github.com/elyra-ai/elyra/issues"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/elyra-ai/elyra/"
  16. },
  17. "license": "Apache-2.0",
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "files": [
  22. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  23. "src/**/*.{ts,tsx}",
  24. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  25. ],
  26. "scripts": {
  27. "build": "tsc",
  28. "build:test": "tsc --build tsconfig.test.json",
  29. "clean": "rimraf lib",
  30. "dist": "npm pack .",
  31. "prepare": "npm run build",
  32. "test": "jest",
  33. "watch": "tsc -w",
  34. "lab:install": "jupyter labextension link --no-build",
  35. "lab:uninstall": "jupyter labextension unlink --no-build"
  36. },
  37. "dependencies": {
  38. "@jupyterlab/apputils": "^3.4.0",
  39. "@jupyterlab/coreutils": "^5.4.0",
  40. "@jupyterlab/services": "^6.4.0",
  41. "react": "^17.0.1",
  42. "react-dom": "^17.0.1",
  43. "react-intl": "^3.0.0"
  44. },
  45. "devDependencies": {
  46. "@jupyterlab/testutils": "3.4.0",
  47. "@types/jest": "^23.3.11",
  48. "@types/react": "^17.0.0",
  49. "@types/react-dom": "^17.0.0",
  50. "@types/react-intl": "^3.0.0",
  51. "jest": "^24.7.1",
  52. "jest-raw-loader": "^1.0.1",
  53. "rimraf": "^3.0.2",
  54. "source-map-loader": "^0.2.4",
  55. "ts-jest": "^24.0.2",
  56. "ts-loader": "^6.2.1",
  57. "typescript": "~4.1.3"
  58. },
  59. "publishConfig": {
  60. "access": "public"
  61. },
  62. "jupyterlab": {
  63. "extension": false,
  64. "outputDir": "../../dist/labextensions/@elyra/services"
  65. }
  66. }