forked from inception-health/otel-export-trace-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.47 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"private": true,
"name": "otel-cicd-action",
"version": "1.9.0",
"description": "Github Action that export CI/CD workflows to any endpoint compatible with OpenTelemetry",
"scripts": {
"prepare": "husky",
"lint:fix": "eslint --cache --fix .",
"lint:ci": "eslint .",
"format": "prettier --write .",
"format:ci": "prettier --check .",
"prebuild": "rimraf lib",
"build": "tsc",
"package": "npm run build && ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "cross-env NODE_ENV=test DOTENV_CONFIG_PATH=./.env.test jest",
"test:watch": "cross-env NODE_ENV=test DOTENV_CONFIG_PATH=./.env.test jest --watch",
"test:ci": "cross-env NODE_ENV=test jest --collect-coverage -ci",
"all": "npm run format && npm run lint:fix && npm run test && npm run package"
},
"exports": {
".": "./dist/index.js"
},
"keywords": [],
"author": "Corentin Musard <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.51.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.51.1",
"@opentelemetry/resources": "^1.24.1",
"@opentelemetry/sdk-trace-base": "^1.24.1",
"@opentelemetry/semantic-conventions": "^1.24.1",
"jszip": "^3.10.1"
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vercel/ncc": "^0.38.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^3.0.7",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"lint-staged": {
"*": [
"prettier --write .",
"eslint --cache --fix ."
]
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"titleTemplate": "{title}",
"ancestorSeparator": " ❯ ",
"classNameTemplate": "{classname}",
"includeConsoleOutput": "true",
"reportTestSuiteErrors": "true"
},
"engines": {
"node": ">=20.0.0"
}
}