forked from OfficeDev/Office-Addin-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 878 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "root",
"private": true,
"scripts": {
"audit": "npm audit -- audit-level=critical & lerna exec --concurrency 1 --no-sort --stream npm audit -- --audit-level=critical",
"audit:fix": "npm audit fix & lerna exec --concurrency 1 --no-sort --stream npm audit fix",
"build": "lerna run build",
"dist-tags": "lerna exec --concurrency 1 --no-sort --stream npm dist-tag ls",
"postinstall": "lerna bootstrap",
"publish:next": "lerna publish --dist-tag next",
"test": "lerna run test",
"update-latest-dist-tags": "lerna exec --concurrency 1 --no-sort --stream for /f \"usebackq\" %a in (`npm view . name`) do @for /f \"usebackq\" %b in (`npm view . dist-tags.next`) do @npm dist-tag add %a@%b",
"update-packages": "lerna exec --concurrency 1 --no-sort --stream npm update --dev"
},
"devDependencies": {
"lerna": "^3.22.1"
}
}