123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "private": true,
- "scripts": {
- "install": "lerna bootstrap --hoist",
- "build:packages": "cd packages/all-packages && npm run build",
- "build:examples": "lerna run build --scope \"@jupyterlab/example-*\"",
- "build": "npm run build:packages && cd jupyterlab && npm run build",
- "build:main": "npm run build",
- "build:main:prod": "npm run build:packages && cd jupyterlab && npm run build:prod",
- "build:src": "lerna run build --scope \"@jupyterlab/!(test-|example-)*\"",
- "build:test": "lerna run build:test",
- "clean": "node scripts/clean-packages.js examples packages",
- "clean:examples": "node scripts/clean-packages.js examples",
- "clean:main": "cd jupyterlab && npm run clean",
- "clean:src": "node scripts/clean-packages.js packages",
- "clean:tests": "lerna run clean --scope \"@jupyterlab/test-*\"",
- "coverage": "lerna run coverage --stream",
- "docs": "lerna run docs",
- "get:dependency": "node scripts/get-dependency.js",
- "integrity": "node scripts/package-integrity.js",
- "publish": "npm update && npm install && npm run clean && npm run build:packages && lerna publish -m \"Publish\"",
- "test": "cd test && npm test",
- "test:services": "cd packages/services && npm test && npm run test:integration && cd examples/node && python main.py",
- "test:chrome": "lerna run test:chrome --stream",
- "test:firefox": "lerna run test:firefox --stream",
- "test:ie": "lerna run test:ie --concurrency 1 --stream",
- "update:dependency": "node scripts/update-dependency.js",
- "update:core": "cd jupyterlab && node update-core.js",
- "watch:packages": "watch \"npm run build:packages\" ./packages/** --wait 10 --filter=scripts/watch-filter.js --ignoreDotFiles",
- "watch": "watch \"npm run build\" ./packages/** --wait 10 --filter=scripts/watch-filter.js --ignoreDotFiles",
- "watch:main": "npm run watch",
- "addsibling": "node scripts/add-sibling.js",
- "removesibling": "node scripts/remove-sibling.js"
- },
- "dependencies": {},
- "devDependencies": {
- "lerna": "2.0.0-beta.38"
- }
- }
|