package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@jupyterlab/template",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Package Template",
  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. "directories": {
  21. "lib": "lib/"
  22. },
  23. "files": [
  24. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  25. "schema/*.json",
  26. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  27. ],
  28. "scripts": {
  29. "build": "tsc -b",
  30. "build:all": "npm run build",
  31. "build:test": "tsc --build tsconfig.test.json",
  32. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  33. "test": "jest",
  34. "test:cov": "jest --collect-coverage",
  35. "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
  36. "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
  37. "watch": "tsc -b --watch"
  38. },
  39. "devDependencies": {
  40. "@jupyterlab/testutils": "^3.4.3",
  41. "@types/jest": "^26.0.10",
  42. "jest": "^26.4.2",
  43. "rimraf": "~3.0.0",
  44. "ts-jest": "^26.3.0",
  45. "typescript": "~4.1.3"
  46. },
  47. "publishConfig": {
  48. "access": "public"
  49. }
  50. }