-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "@arcxp/datadog-service-catalog-metadata-provider",
"version": "3.0.0",
"type": "commonjs",
"description": "This is a package which provides GitHub Actions with a workflow for providing the DataDog Service Catalog Provider with information that will register your service in the Service Catalog.",
"main": "index.cjs",
"scripts": {
"test": "jest",
"build": "esbuild index.cjs --bundle --platform=node --resolve-extensions=.cjs,.ts,.js --target=node20 --outfile=dist/index.cjs",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcxp/datadog-service-catalog-metadata-provider.git"
},
"keywords": ["github", "action", "datadog", "service-catalog"],
"author": "Mike Stemle <mike.stemle@washpost.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arcxp/datadog-service-catalog-metadata-provider/issues"
},
"homepage": "https://github.com/arcxp/datadog-service-catalog-metadata-provider#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.3",
"@octokit/rest": "^21.0.2",
"lodash": "^4.17.21",
"uuid": "^10.0.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"ajv": "^8.17.1",
"esbuild": "0.24.0",
"jest": "^29.7.0",
"prettier": "^3.3.3"
}
}