package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "3.4.3",
  4. "description": "JupyterLab - Build Utilities",
  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. "main": "lib/index.js",
  16. "types": "lib/index.d.ts",
  17. "bin": {
  18. "get-dependency": "./lib/get-dependency.js",
  19. "local-repository": "./lib/local-repository.js",
  20. "remove-dependency": "./lib/remove-dependency.js",
  21. "update-dependency": "./lib/update-dependency.js",
  22. "update-dist-tag": "./lib/update-dist-tag.js"
  23. },
  24. "directories": {
  25. "lib": "lib/"
  26. },
  27. "files": [
  28. "lib/*.d.ts",
  29. "lib/*.js.map",
  30. "lib/*.js",
  31. "template/package.json",
  32. "template/tsconfig.json",
  33. "template/src/index.ts",
  34. "verdaccio.yml"
  35. ],
  36. "scripts": {
  37. "build": "tsc",
  38. "build:all": "npm run build",
  39. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  40. "watch": "tsc -w --listEmittedFiles"
  41. },
  42. "dependencies": {
  43. "@lumino/coreutils": "^1.11.0",
  44. "@yarnpkg/lockfile": "^1.1.0",
  45. "child_process": "~1.0.2",
  46. "commander": "~6.0.0",
  47. "crypto": "~1.0.1",
  48. "dependency-graph": "^0.9.0",
  49. "fs-extra": "^9.0.1",
  50. "glob": "~7.1.6",
  51. "inquirer": "^7.1.0",
  52. "minimatch": "~3.0.4",
  53. "os": "~0.1.1",
  54. "package-json": "^6.5.0",
  55. "prettier": "~2.1.1",
  56. "process": "^0.11.10",
  57. "semver": "^7.3.2",
  58. "sort-package-json": "~1.44.0",
  59. "typescript": "~4.1.3",
  60. "verdaccio": "^5.1.1"
  61. },
  62. "devDependencies": {
  63. "@types/fs-extra": "^9.0.1",
  64. "@types/glob": "^7.1.1",
  65. "@types/inquirer": "^7.3.1",
  66. "@types/node": "^14.6.1",
  67. "@types/prettier": "~2.1.0",
  68. "rimraf": "~3.0.0"
  69. },
  70. "publishConfig": {
  71. "access": "public"
  72. }
  73. }