-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
54
{
"name": "upload-dsyms-github-action",
"version": "0.1.0",
"description": "Upload dSYM files to Datadog to symbolicate your crash reports.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --config eslint.config.mjs src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataDog/upload-dsyms-github-action.git"
},
"keywords": [
"actions",
"datadog",
"rum",
"ios",
"dsyms"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "2.0.3",
"@datadog/datadog-ci": "5.9.0",
"@datadog/datadog-ci-base": "5.9.0",
"axios": "^1.12.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/jest": "30.0.0",
"@types/node": "25.4.0",
"@vercel/ncc": "^0.38.4",
"eslint": "9.39.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "5.5.5",
"globals": "^17.4.0",
"jest": "30.2.0",
"js-yaml": "^4.1.1",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0"
},
"resolutions": {
"simple-git": "3.33.0"
}
}