package.json 2.3 KB

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