-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 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
{
"workspaces": [
"packages/foo/*",
"packages/bar/*"
],
"private": true,
"name": "@semrel-extra/demo-msr-cicd-monorepo",
"version": "0.0.0",
"description": "Demo repo to show how multi-semantic-release works with GitHub Actions",
"main": "index.js",
"scripts": {
"clean": "lerna clean --yes && lerna run clean",
"build": "yarn clean && lerna run --stream build",
"test": "yarn clean && lerna run --stream test",
"test:unit": "yarn clean && lerna run --stream test",
"bootstrap": "lerna bootstrap",
"release:debug": "NODE_DEBUG=gh-pages DEBUG='semantic-release:*,msr:*' multi-semantic-release",
"release": "multi-semantic-release",
"postupdate": "yarn && yarn bootstrap && npx yarn-audit-fix --audit-level=moderate && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "//github.com/semrel-extra/demo-msr-cicd"
},
"author": "Anton Golub <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semrel-extra/demo-msr-cicd/issues"
},
"homepage": "https://github.com/semrel-extra/demo-msr-cicd#readme",
"devDependencies": {
"jsdoc": "^4.0.0",
"lerna": "^6.0.0"
}
}