generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "datadog-synthetics-github-action",
"version": "1.14.1",
"author": "Datadog",
"license": "MIT",
"description": "Run Datadog Synthetics CI tests as part of your Github Actions workflow",
"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",
"local-run-tests": "ci/local-run-tests.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/DataDog/synthetics-ci-github-action"
},
"keywords": [
"actions",
"datadog",
"synthetics",
"test"
],
"engines": {
"node": "20.11.0"
},
"volta": {
"node": "20.11.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^1.9.1",
"@datadog/datadog-ci": "^2.45.1",
"deep-extend": "0.6.0"
},
"devDependencies": {
"@types/deep-extend": "0.4.32",
"@types/jest": "^29.5.8",
"@types/node": "^20.11.13",
"@typescript-eslint/parser": "^5.3.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.39.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^25.2.2",
"jest": "^29.7.0",
"prettier": "2.4.1",
"ts-jest": "^29.1.1",
"typescript": "^4.4.4"
}
}