-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.84 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "otel-cli",
"version": "1.3.0",
"description": "OTEL CLI is a command-line tool for sending OpenTelemetry traces.",
"author": "Serkan Ozal <serkanozal86@gmail.com> (https://github.com/serkan-ozal)",
"homepage": "https://github.com/serkan-ozal/otel-cli",
"repository": "serkan-ozal/otel-cli",
"license": "Apache License 2",
"main": "./dist/index.js",
"bin": {
"otel-cli": "./dist/index.js"
},
"keywords": [
"opentelemetry",
"open-telemetry",
"otel",
"tracing",
"monitoring",
"cli"
],
"scripts": {
"build": "tsc",
"start": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" ./src/index.ts",
"start-server": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" ./src/server/bootstrap.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint-check": "prettier --config .prettierrc.json --check ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts ./src/**/**/**/*.ts",
"lint-format": "prettier --config .prettierrc.json --write ./src/*.ts ./src/**/*.ts ./src/**/**/*.ts ./src/**/**/**/*.ts",
"release-patch": "release-it --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-minor": "release-it minor --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-major": "release-it major --ci --git.commit --git.push --git.tag --git.tagName='v${version}' --github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks",
"release-minor-without-tag": "release-it minor --ci --no-git.commit --no-git.push --no-git.tag --no-git.tagName='v${version}' --no-github.release --no-git.requireCleanWorkingDir --no-git.requireUpstream --npm.publish --npm.skipChecks"
},
"files": [
"dist/",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^14.11.8",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"prettier": "^2.2.1",
"release-it": "^15.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@opentelemetry/exporter-trace-otlp-grpc": "^0.43.0",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"find-process": "^1.4.7"
}
}