-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 856 Bytes
/
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
{
"name": "root",
"private": true,
"scripts": {
"pretest": "yarn build",
"test": "lerna run test --concurrency=1 --stream",
"docs:build": "lerna run --scope docs build --stream",
"build": "lerna run --scope pdsl build --stream",
"bootstrap": "lerna bootstrap --no-ci",
"clean": "yarn clean:artifacts && yarn clean:packages",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"publish:latest": "./scripts/publish-latest",
"release:patch": "./scripts/release patch",
"release:minor": "./scripts/release minor",
"release:major": "./scripts/release major"
},
"resolutions": {
"acorn": "^6.4.1",
"minimist": "^1.2.2",
"kind-of": "^6.0.3"
},
"devDependencies": {
"lerna": "^3.16.4"
},
"workspaces": [
"packages/*",
"examples/*"
]
}