-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "@yuya-takeyama/github-actions-metrics-to-datadog-action",
"version": "0.5.0",
"private": true,
"description": "Send metrics of GitHub Actions to Datadog",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"keywords": [
"actions",
"metrics",
"datadog"
],
"author": "Yuya Takeyama",
"license": "MIT",
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "4.0.0",
"node-fetch": "3.2.0"
},
"devDependencies": {
"@types/jest": "27.4.0",
"@types/node": "16.11.21",
"@types/node-fetch": "3.0.2",
"@typescript-eslint/parser": "5.10.0",
"@vercel/ncc": "0.33.1",
"eslint": "8.7.0",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.4.7",
"jest-circus": "27.4.6",
"js-yaml": "4.1.0",
"prettier": "2.4.1",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
}
}