forked from OfficeDev/Office-Addin-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 943 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=14 <15",
"npm": ">=6 <7"
},
"scripts": {
"audit": "npm audit & npm run exec -- npm audit",
"audit:fix": "npm audit fix & npm run exec -- npm audit fix",
"build": "lerna run build",
"clean-install-packages": "npm run exec -- npm ci & npm ci",
"dist-tags": "npm run exec -- npm dist-tag ls",
"install-packages": "npm run exec -- npm install & npm install",
"exec": "lerna exec --concurrency 1 --no-bail --no-sort --stream",
"postinstall": "lerna bootstrap",
"publish:next": "lerna publish --dist-tag next",
"test": "lerna run test",
"update-latest-dist-tags": "npm run exec 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": "npm run exec -- npm update --dev"
},
"devDependencies": {
"lerna": "^3.22.1"
}
}