-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cli-opentelemetry",
"version": "1.2.3",
"description": "Open Telemetry wrapper for NodeJs CLI tools",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "npx rimraf dist",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"prettier": "npx prettier --check --ignore-unknown ./**/*",
"build:typings": "npx tsc",
"bundle": "npx esbuild src/index.ts --bundle --minify --outfile=dist/index.js --platform=node --external:lodash --external:tslib",
"prebuild": "npm run prettier && npm run eslint && npm run clean",
"build": "npm run build:typings && npm run bundle",
"pretest": "npm run build",
"test": "npx jest",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sodaru/cli-opentelemetry.git"
},
"keywords": [
"OTLP",
"Open",
"Telemetry",
"CLI"
],
"author": "Raghavendra K R <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sodaru/cli-opentelemetry/issues"
},
"homepage": "https://github.com/sodaru/cli-opentelemetry#readme",
"dependencies": {
"lodash": "^4.17.21",
"tslib": "^2.4.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.2.0",
"@opentelemetry/resources": "^1.7.0",
"@opentelemetry/sdk-trace-base": "^1.7.0",
"@opentelemetry/semantic-conventions": "^1.7.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.33.0",
"@types/jest": "^27.5.1",
"@types/node": "^18.7.23",
"esbuild": "^0.14.48",
"eslint-config-sodaru": "^1.0.0",
"jest": "^28.1.0",
"lodash": "^4.17.21",
"nodejs-cli-runner": "^1.1.2",
"prettier-config-sodaru": "^1.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"typescript": "^4.7.4",
"uuid": "^8.3.2"
},
"eslintConfig": {
"extends": [
"sodaru"
]
},
"prettier": "prettier-config-sodaru"
}