package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@jupyterlab/cell-toolbar-extension",
  3. "version": "3.4.3",
  4. "description": "Extension for cell toolbar adapted from jlab-enhanced-cell-toolbar",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "sideEffects": [
  16. "style/**/*"
  17. ],
  18. "main": "lib/index.js",
  19. "types": "lib/index.d.ts",
  20. "style": "style/index.css",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "files": [
  25. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  26. "schema/*.json",
  27. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
  28. "style/index.js"
  29. ],
  30. "scripts": {
  31. "build": "tsc -b",
  32. "build:all": "npm run build",
  33. "build:test": "tsc --build tsconfig.test.json",
  34. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  35. "test": "jest",
  36. "test:cov": "jest --collect-coverage",
  37. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  38. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  39. "watch": "tsc -b --watch"
  40. },
  41. "dependencies": {
  42. "@jupyterlab/application": "^3.4.3",
  43. "@jupyterlab/apputils": "^3.4.3",
  44. "@jupyterlab/cell-toolbar": "^3.4.3",
  45. "@jupyterlab/settingregistry": "^3.4.3",
  46. "@jupyterlab/translation": "^3.4.3"
  47. },
  48. "devDependencies": {
  49. "@jupyterlab/testutils": "^3.4.3",
  50. "@types/jest": "^26.0.10",
  51. "jest": "^26.4.2",
  52. "rimraf": "~3.0.0",
  53. "ts-jest": "^26.3.0",
  54. "typescript": "~4.1.3"
  55. },
  56. "publishConfig": {
  57. "access": "public"
  58. },
  59. "jupyterlab": {
  60. "extension": true,
  61. "schemaDir": "schema"
  62. },
  63. "styleModule": "style/index.js"
  64. }