package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "3.0.0-rc.6",
  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. "remove-dependency": "./lib/remove-dependency.js",
  20. "update-dependency": "./lib/update-dependency.js",
  21. "update-dist-tag": "./lib/update-dist-tag.js"
  22. },
  23. "directories": {
  24. "lib": "lib/"
  25. },
  26. "files": [
  27. "lib/*.d.ts",
  28. "lib/*.js.map",
  29. "lib/*.js",
  30. "template/package.json",
  31. "template/tsconfig.json",
  32. "template/src/index.ts"
  33. ],
  34. "scripts": {
  35. "build": "tsc",
  36. "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
  37. "prepublishOnly": "npm run build",
  38. "watch": "tsc -w --listEmittedFiles"
  39. },
  40. "dependencies": {
  41. "@lumino/coreutils": "^1.5.3",
  42. "@yarnpkg/lockfile": "^1.1.0",
  43. "child_process": "~1.0.2",
  44. "commander": "~6.0.0",
  45. "crypto": "~1.0.1",
  46. "dependency-graph": "^0.9.0",
  47. "fs-extra": "^9.0.1",
  48. "glob": "~7.1.6",
  49. "inquirer": "^7.0.0",
  50. "package-json": "^6.5.0",
  51. "prettier": "^2.1.1",
  52. "semver": "^7.3.2",
  53. "sort-package-json": "~1.44.0",
  54. "typescript": "~4.0.2"
  55. },
  56. "devDependencies": {
  57. "@types/fs-extra": "^9.0.1",
  58. "@types/glob": "^7.1.1",
  59. "@types/inquirer": "^7.3.1",
  60. "@types/node": "^14.6.1",
  61. "@types/prettier": "^2.1.0",
  62. "rimraf": "~3.0.0"
  63. },
  64. "publishConfig": {
  65. "access": "public"
  66. }
  67. }