-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 loc) · 1.78 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
45
46
47
48
{
"version": "0.3.0",
"private": "true",
"license": "MIT",
"keywords": [
"tsp",
"trace server protocol",
"tracing",
"trace"
],
"repository": {
"type": "git",
"url": "https://github.com/eclipse-cdt-cloud/tsp-typescript-client"
},
"bugs": {
"url": "https://github.com/eclipse-cdt-cloud/tsp-typescript-client/issues"
},
"homepage": "https://github.com/eclipse-cdt-cloud/tsp-typescript-client",
"files": [
"lib",
"src"
],
"devDependencies": {
"@eclipse-dash/nodejs-wrapper": "^0.0.1",
"lerna": "^8.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"node-fetch": "^2.5.0"
},
"workspaces": [
"tsp-typescript-client"
],
"scripts": {
"prepare": "yarn build",
"build": "lerna run build",
"clean": "lerna run clean",
"test": "lerna run test --",
"test:coverage": "yarn test --coverage",
"publish:latest": "lerna publish from-git --registry=https://registry.npmjs.org/ --exact --no-push --yes",
"publish:next": "lerna publish --registry=https://registry.npmjs.org/ --exact --canary minor --preid=next.$(date -u '+%Y%m%d%H%M%S').$(git rev-parse --short HEAD) --dist-tag=next --no-git-tag-version --no-push --yes",
"version:major": "lerna version major --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Major)\"",
"version:minor": "lerna version minor --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Minor)\"",
"version:patch": "lerna version patch --exact --no-push --git-tag-command /usr/bin/true --yes -m \"Release %s (Patch)\"",
"license:check": "npx dash-licenses-wrapper --configFile=./configs/license-check-config.json",
"license:check:review": "npx dash-licenses-wrapper --configFile=./configs/license-check-config.json --review"
}
}