forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"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: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",
"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",
"publish": "npm update && npm install && npm run clean && npm run build && lerna publish -m \"Publish\"",
"update:dependency": "node scripts/update-dependency.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"
}
}