-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
46
47
48
49
50
51
52
53
{
"name": "datadog-synthetics-github-action",
"version": "4.0.0",
"author": "step-security",
"license": "Apache-2.0",
"description": "Run Datadog Synthetics CI tests as part of your Github Actions workflow",
"main": "lib/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "yarn build && yarn package",
"test": "jest",
"local-run-tests": "ci/local-run-tests.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/step-security/synthetics-ci-github-action"
},
"keywords": [
"actions",
"datadog",
"synthetics",
"test"
],
"engines": {
"node": "24.13.0"
},
"packageManager": "yarn@3.4.1",
"dependencies": {
"@actions/core": "^1.11.1",
"@datadog/datadog-ci": "^5.13.0",
"@datadog/datadog-ci-plugin-synthetics": "^5.13.0",
"axios": "^1.13.4",
"deep-extend": "0.6.0"
},
"devDependencies": {
"@types/deep-extend": "0.4.32",
"@types/jest": "^29.5.8",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.3.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.39.0",
"eslint-plugin-jest": "^25.2.2",
"jest": "^29.7.0",
"prettier": "2.4.1",
"ts-jest": "^29.1.1",
"typescript": "^5.9.2"
}
}