-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.27 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
{
"name": "otel-upload-test-artifact-action",
"version": "1.3.0",
"description": "Action that Uploads OTLP log file to GH Artifact",
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"lint:fix": "eslint --cache --fix .",
"lint:ci": "eslint .",
"format:fix": "prettier --write .",
"format:ci": "prettier --check .",
"prebuild": "rimraf lib",
"build": "tsc",
"package": "npm run build && ncc build --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"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^0.6.1",
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"@opentelemetry/api": "^1.1.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.27.0",
"@opentelemetry/resources": "^1.1.0",
"@opentelemetry/sdk-trace-base": "^1.1.0",
"@opentelemetry/semantic-conventions": "^1.1.0",
"axios": "^0.25.0",
"jszip": "^3.8.0",
"junit2json": "^2.0.6",
"opentelemetry-exporter-trace-otlp-file": "^0.1.1"
},
"devDependencies": {
"@actions/glob": "^0.2.0",
"@octokit/rest": "^18.12.0",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vercel/ncc": "^0.31.1",
"cross-env": "^7.0.3",
"dotenv": "^14.3.2",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-yaml": "^0.5.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-junit": "^13.0.0",
"jest-mock-extended": "^2.0.4",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ttypescript": "^1.5.13",
"typescript": "^4.5.4"
},
"lint-staged": {
"*": [
"prettier --write .",
"eslint --cache --fix ."
]
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"titleTemplate": "{title}",
"ancestorSeparator": " ❯ ",
"classNameTemplate": "{classname}",
"includeConsoleOutput": "true",
"reportTestSuiteErrors": "true"
}
}