forked from aspecto-io/opentelemetry-ext-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.14 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
{
"name": "root",
"private": true,
"scripts": {
"watch": "lerna run watch --parallel",
"test": "lerna run test",
"test:ci:changed": "lerna run test:ci --since origin/master --parallel",
"test:ci:all": "lerna run test:ci --parallel",
"build": "lerna run build",
"build:ci": "lerna run build",
"postinstall": "lerna bootstrap",
"prettier": "prettier --config .prettierrc.yml --write --ignore-unknown \"**/*\"",
"prettier:check": "npx prettier@2.3.2 --config .prettierrc.yml --check --ignore-unknown \"**/*\"",
"version:update": "lerna run version:update",
"version": "git add packages/**/version.ts",
"publish:ci": "lerna publish --yes --allow-branch master --create-release github --conventionalCommits",
"publish:ci:prerelease": "lerna publish --yes --no-git-tag-version --no-push --no-changelog --dist-tag alpha"
},
"devDependencies": {
"lerna": "^3.22.1",
"prettier": "2.3.2"
},
"workspaces": [
"packages/*",
"detectors/*",
"detectors/node/*",
"propagators/*",
"examples/*"
]
}