package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "3.0.0-alpha.4",
  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. "files": [
  16. "lib/*.d.ts",
  17. "lib/*.js.map",
  18. "lib/*.js",
  19. "template/package.json",
  20. "template/tsconfig.json",
  21. "template/src/index.ts"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "bin": {
  26. "ensure-max-old-space": "./lib/ensure-max-old-space.js",
  27. "get-dependency": "./lib/get-dependency.js",
  28. "remove-dependency": "./lib/remove-dependency.js",
  29. "update-dependency": "./lib/update-dependency.js",
  30. "update-dist-tag": "./lib/update-dist-tag.js"
  31. },
  32. "directories": {
  33. "lib": "lib/"
  34. },
  35. "scripts": {
  36. "build": "tsc",
  37. "clean": "rimraf lib",
  38. "prepublishOnly": "npm run build",
  39. "watch": "tsc -w --listEmittedFiles"
  40. },
  41. "dependencies": {
  42. "@lumino/coreutils": "^1.4.3",
  43. "@yarnpkg/lockfile": "^1.1.0",
  44. "child_process": "~1.0.2",
  45. "commander": "~4.0.1",
  46. "crypto": "~1.0.1",
  47. "dependency-graph": "^0.8.1",
  48. "duplicate-package-checker-webpack-plugin": "^3.0.0",
  49. "fs-extra": "^8.1.0",
  50. "glob": "~7.1.6",
  51. "inquirer": "^7.0.0",
  52. "mini-css-extract-plugin": "~0.9.0",
  53. "package-json": "^6.5.0",
  54. "path": "~0.12.7",
  55. "prettier": "^1.19.1",
  56. "semver": "^6.3.0",
  57. "sort-package-json": "~1.31.0",
  58. "typescript": "~3.9.2",
  59. "webpack": "5.0.0-beta.21",
  60. "which": "^2.0.2"
  61. },
  62. "devDependencies": {
  63. "@types/fs-extra": "^8.0.1",
  64. "@types/glob": "^7.1.1",
  65. "@types/inquirer": "^6.5.0",
  66. "@types/node": "^12.12.17",
  67. "@types/prettier": "^1.19.0",
  68. "@types/webpack": "^4.41.0",
  69. "@types/which": "^1.3.2",
  70. "rimraf": "~3.0.0"
  71. },
  72. "publishConfig": {
  73. "access": "public"
  74. }
  75. }