package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@jupyterlab/buildutils",
  3. "version": "0.8.0-1",
  4. "description": "JupyterLab - Build Utilities",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "license": "BSD-3-Clause",
  10. "author": "Project Jupyter",
  11. "files": [
  12. "lib/*.d.ts",
  13. "lib/*.js.map",
  14. "lib/*.js",
  15. "template/package.json",
  16. "template/tsconfig.json",
  17. "template/src/index.ts"
  18. ],
  19. "main": "lib/index.js",
  20. "types": "lib/index.d.ts",
  21. "directories": {
  22. "lib": "lib/"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/jupyterlab/jupyterlab.git"
  27. },
  28. "scripts": {
  29. "build": "tsc",
  30. "clean": "rimraf lib",
  31. "prepublishOnly": "npm run build",
  32. "watch": "tsc -w --listEmittedFiles"
  33. },
  34. "dependencies": {
  35. "child_process": "~1.0.2",
  36. "fs-extra": "~4.0.2",
  37. "glob": "~7.1.2",
  38. "inquirer": "~3.3.0",
  39. "path": "~0.12.7",
  40. "sort-package-json": "~1.7.1",
  41. "typescript": "~2.9.2"
  42. },
  43. "devDependencies": {
  44. "@types/fs-extra": "~4.0.3",
  45. "@types/glob": "~5.0.33",
  46. "@types/inquirer": "~0.0.35",
  47. "@types/node": "~8.0.47",
  48. "rimraf": "~2.6.2"
  49. }
  50. }