-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"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 <[email protected]>",
"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.1.1",
"lodash": "^4.17.21",
"uuid": "^11.1.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"ajv": "^8.17.1",
"esbuild": "0.25.0",
"jest": "^29.7.0",
"prettier": "^3.5.3"
}
}