-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 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
{
"name": "lerna-playground",
"private": true,
"description": "an attempt to learn how lerna and semantic-release might be able to work together",
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"test:packages": "lerna run --parallel test",
"release": "lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo",
"prepare": "husky install"
},
"repository": "travi-test/lerna-playground",
"keywords": [
"lerna",
"semantic-release"
],
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"license": "MIT",
"bugs": "https://github.com/travi-test/lerna-playground/issues",
"homepage": "https://github.com/travi-test/lerna-playground#readme",
"devDependencies": {
"commitlint-config-travi": "1.4.54",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lerna": "6.6.2",
"lockfile-lint": "4.14.0",
"npm-run-all2": "7.0.2",
"semantic-release": "24.2.1",
"semantic-release-monorepo": "8.0.2"
}
}