package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "private": true,
  3. "scripts": {
  4. "install": "lerna bootstrap --hoist",
  5. "build:packages": "cd packages/all-packages && npm run build",
  6. "build:examples": "lerna run build --scope \"@jupyterlab/example-*\"",
  7. "build": "npm run build:packages && cd jupyterlab && npm run build",
  8. "build:main": "npm run build",
  9. "build:main:prod": "npm run build:packages && cd jupyterlab && npm run build:prod",
  10. "build:src": "lerna run build --scope \"@jupyterlab/!(test-|example-)*\"",
  11. "build:test": "lerna run build:test",
  12. "clean": "node scripts/clean-packages.js examples packages",
  13. "clean:examples": "node scripts/clean-packages.js examples",
  14. "clean:main": "cd jupyterlab && npm run clean",
  15. "clean:src": "node scripts/clean-packages.js packages",
  16. "clean:tests": "lerna run clean --scope \"@jupyterlab/test-*\"",
  17. "coverage": "lerna run coverage --stream",
  18. "docs": "lerna run docs",
  19. "get:dependency": "node scripts/get-dependency.js",
  20. "integrity": "node scripts/package-integrity.js",
  21. "publish": "npm update && npm install && npm run clean && npm run build:packages && lerna publish -m \"Publish\"",
  22. "test": "cd test && npm test",
  23. "test:services": "cd packages/services && npm test && npm run test:integration && cd examples/node && python main.py",
  24. "test:chrome": "lerna run test:chrome --stream",
  25. "test:firefox": "lerna run test:firefox --stream",
  26. "test:ie": "lerna run test:ie --concurrency 1 --stream",
  27. "update:dependency": "node scripts/update-dependency.js",
  28. "update:core": "cd jupyterlab && node update-core.js",
  29. "watch:packages": "watch \"npm run build:packages\" ./packages/** --wait 10 --filter=scripts/watch-filter.js --ignoreDotFiles",
  30. "watch": "watch \"npm run build\" ./packages/** --wait 10 --filter=scripts/watch-filter.js --ignoreDotFiles",
  31. "watch:main": "npm run watch",
  32. "addsibling": "node scripts/add-sibling.js",
  33. "removesibling": "node scripts/remove-sibling.js"
  34. },
  35. "dependencies": {},
  36. "devDependencies": {
  37. "lerna": "2.0.0-beta.38"
  38. }
  39. }