package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "3.0.0-alpha.11",
  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. "get-dependency": "./lib/get-dependency.js",
  27. "remove-dependency": "./lib/remove-dependency.js",
  28. "update-dependency": "./lib/update-dependency.js",
  29. "update-dist-tag": "./lib/update-dist-tag.js"
  30. },
  31. "directories": {
  32. "lib": "lib/"
  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.4.3",
  42. "@yarnpkg/lockfile": "^1.1.0",
  43. "child_process": "~1.0.2",
  44. "commander": "~4.0.1",
  45. "crypto": "~1.0.1",
  46. "dependency-graph": "^0.8.1",
  47. "fs-extra": "^8.1.0",
  48. "glob": "~7.1.6",
  49. "inquirer": "^7.0.0",
  50. "package-json": "^6.5.0",
  51. "path": "~0.12.7",
  52. "prettier": "^1.19.1",
  53. "semver": "^6.3.0",
  54. "sort-package-json": "~1.31.0",
  55. "typescript": "~3.9.2",
  56. "which": "^2.0.2"
  57. },
  58. "devDependencies": {
  59. "@types/fs-extra": "^8.0.1",
  60. "@types/glob": "^7.1.1",
  61. "@types/inquirer": "^6.5.0",
  62. "@types/node": "^12.12.17",
  63. "@types/prettier": "^1.19.0",
  64. "@types/webpack": "^4.41.0",
  65. "@types/which": "^1.3.2",
  66. "rimraf": "~3.0.0"
  67. },
  68. "publishConfig": {
  69. "access": "public"
  70. }
  71. }