package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "1.1.0-rc.0",
  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",
  37. "prepublishOnly": "npm run build",
  38. "watch": "tsc -w --listEmittedFiles"
  39. },
  40. "dependencies": {
  41. "@phosphor/coreutils": "^1.3.1",
  42. "@yarnpkg/lockfile": "^1.1.0",
  43. "child_process": "~1.0.2",
  44. "commander": "~2.20.0",
  45. "dependency-graph": "^0.8.0",
  46. "fs-extra": "^8.0.1",
  47. "glob": "~7.1.2",
  48. "inquirer": "^6.3.1",
  49. "mini-css-extract-plugin": "~0.6.0",
  50. "package-json": "^6.3.0",
  51. "path": "~0.12.7",
  52. "prettier": "^1.18.2",
  53. "semver": "^6.1.0",
  54. "sort-package-json": "~1.22.1",
  55. "typescript": "~3.5.1",
  56. "webpack": "^4.32.2"
  57. },
  58. "devDependencies": {
  59. "@types/fs-extra": "^7.0.0",
  60. "@types/glob": "^7.1.1",
  61. "@types/inquirer": "^6.0.3",
  62. "@types/mini-css-extract-plugin": "^0.2.0",
  63. "@types/node": "^12.0.2",
  64. "@types/prettier": "^1.16.4",
  65. "@types/webpack": "^4.4.32",
  66. "rimraf": "~2.6.2"
  67. }
  68. }