-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
58 lines (58 loc) · 2.01 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
{
"name": "workflow-telemetry-action",
"version": "2.0.0",
"private": false,
"description": "Github action to collect metrics (CPU, memory, I/O, etc ...) from your workflows to help you debug and optimize your CI/CD pipeline",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package:main": "ncc build --source-map src/main.ts --out dist/main",
"package:post": "ncc build --source-map src/post.ts --out dist/post",
"package:statCollector": "ncc build --source-map src/statCollector.ts --out dist/sc",
"package:statCollectorWorker": "ncc build --source-map src/statCollectorWorker.ts --out dist/scw",
"package": "npm run package:main && npm run package:post && npm run package:statCollector && npm run package:statCollectorWorker",
"test": "echo \"Warn: no test specified\" && exit 0",
"all": "npm run format-check && npm run lint && npm run build && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runforesight/workflow-telemetry-action.git"
},
"keywords": [
"monitoring",
"observability",
"telemetry",
"github",
"actions",
"workflow",
"ci-cd"
],
"author": "Serkan Özal <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.9",
"@octokit/openapi-types": "^14.0.0",
"axios": "^1.1.2",
"sprintf-js": "^1.1.2",
"systeminformation": "^5.11.15"
},
"devDependencies": {
"@types/node": "^16.3.3",
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.25.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-prettier": "^5.1.3",
"js-yaml": "^4.1.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}