forked from jupyterlab/lumino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.18 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
{
"version": "0.0.0",
"private": true,
"workspaces": [
"examples/*",
"packages/*",
"tests/*"
],
"scripts": {
"api": "lerna run api",
"build": "lerna run build",
"build:examples": "lerna run build --scope \"@lumino/example-*\"",
"build:src": "lerna run build --scope \"@lumino/!(test-|example-)*\"",
"build:test": "lerna run build:test",
"clean": "lerna run clean",
"clean:examples": "lerna run clean --scope \"@lumino/example-*\"",
"clean:src": "lerna run clean --scope \"@lumino/!(test-|example-)*\"",
"clean:tests": "lerna run clean:tests",
"docs": "rimraf docs/api && lerna run docs",
"get:dependency": "get-dependency",
"publish": "npm run clean && npm run build && lerna publish -m \"Publish\" from-package",
"remove:dependency": "remove-dependency",
"test": "lerna run test",
"test:chrome": "lerna run test:chrome",
"test:firefox": "lerna run test:firefox",
"test:ie": "lerna run test:ie --concurrency 1",
"update:dependency": "update-dependency --lerna",
"version": "lerna version"
},
"dependencies": {},
"devDependencies": {
"@jupyterlab/buildutils": "^1.0.0",
"lerna": "^3.19.0"
}
}