|
@@ -1,5 +1,27 @@
|
|
|
{
|
|
|
"private": true,
|
|
|
+ "scripts": {
|
|
|
+ "install": "lerna bootstrap --hoist",
|
|
|
+ "build": "lerna run build",
|
|
|
+ "build:examples": "lerna run build --scope \"@jupyterlab/example-*\"",
|
|
|
+ "build:main": "cd jupyterlab && npm run build",
|
|
|
+ "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",
|
|
|
+ "test": "cd packages/extension-builder && npm test && cd ../../test && npm test",
|
|
|
+ "test:services": "cd packages/services && npm run build:examples && npm test && npm run test:integration",
|
|
|
+ "test:chrome": "lerna run test:chrome --stream",
|
|
|
+ "test:firefox": "lerna run test:firefox --stream",
|
|
|
+ "test:ie": "lerna run test:ie --concurrency 1 --stream",
|
|
|
+ "publish": "npm update && npm install && npm run clean && npm run build && lerna publish -m \"Publish\"",
|
|
|
+ "update:dependency": "node scripts/update-dependency.js",
|
|
|
+ "watch": "cd jupyterlab && npm run watch"
|
|
|
+ },
|
|
|
"dependencies": {},
|
|
|
"devDependencies": {
|
|
|
"@types/chai": "^3.4.35",
|
|
@@ -39,26 +61,4 @@
|
|
|
"watch": "^0.18.0",
|
|
|
"webpack": "^2.2.1"
|
|
|
},
|
|
|
- "scripts": {
|
|
|
- "install": "lerna bootstrap --hoist",
|
|
|
- "build": "lerna run build",
|
|
|
- "build:examples": "lerna run build --scope \"@jupyterlab/example-*\"",
|
|
|
- "build:main": "cd jupyterlab && npm run build",
|
|
|
- "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",
|
|
|
- "test": "cd packages/extension-builder && npm test && cd ../../test && npm test",
|
|
|
- "test:services": "cd packages/services && npm run build:examples && npm test && npm run test:integration",
|
|
|
- "test:chrome": "lerna run test:chrome --stream",
|
|
|
- "test:firefox": "lerna run test:firefox --stream",
|
|
|
- "test:ie": "lerna run test:ie --concurrency 1 --stream",
|
|
|
- "publish": "npm update && npm install && npm run clean && npm run build && lerna publish -m \"Publish\"",
|
|
|
- "update:dependency": "node scripts/update-dependency.js",
|
|
|
- "watch": "cd jupyterlab && npm run watch"
|
|
|
- }
|
|
|
}
|