forked from LavaMoat/LavaMoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
36
37
38
39
40
41
42
43
44
{
"name": "lavamoat",
"private": true,
"devDependencies": {
"ava": "^3.15.0",
"depcheck": "^1.4.0",
"eslint": "^7.22.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-standard": "^5.0.0",
"lerna": "^3.22.1",
"semantic-release": "^17.4.1",
"semantic-release-monorepo": "^7.0.4",
"tap-spec": "^5.0.0"
},
"engines": {
"node": ">=12.16.1"
},
"scripts": {
"test": "lerna run test --ignore=lavamoat-webpack",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"publish": "lerna publish from-package --no-push --no-git-tag-version --yes",
"setup": "lerna bootstrap && yarn allow-scripts",
"semantic-publish": "lerna exec --concurrency 1 -- semantic-release -e semantic-release-monorepo"
},
"workspaces": [
"packages/*"
],
"release": {
"branches": [
"main",
"semantic"
],
"repositoryUrl": "git+https://github.com/LavaMoat/lavamoat.git",
"ci": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"preset": "angular"
}
}