-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.9 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 4.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "datadog-ci-monorepo",
"scripts": {
"build": "yarn tsc:build",
"bundle:npm": "cd packages/datadog-ci && node ../../scripts/tsdown-cli-npm.mjs",
"bundle:sea": "cd packages/datadog-ci && node ../../scripts/tsdown-cli-sea.mjs",
"catalog-endpoints": "tsx --conditions=development bin/catalog-endpoints.ts",
"check-licenses": "node bin/check-licenses.js",
"check-npm-packages": "bin/check-npm-packages.sh",
"clean": "rimraf --glob .eslintcache .jest-cache 'packages/*/{dist,tsconfig.tsbuildinfo}'",
"compare-binary-size": "FORCE_COLOR=1 node bin/compare-binary-size.js",
"dev": "yarn tsc:build --watch",
"dist-standalone": "FORCE_COLOR=1 yarn bundle:sea && pkg --sea packages/datadog-ci/dist/bundle.js",
"dist-standalone:standard": "FORCE_COLOR=1 yarn bundle:sea && pkg packages/datadog-ci/dist/bundle.js",
"dist-standalone:test": "jest --config ./jest.config-standalone.mjs --colors",
"e2e:test": "jest --config ./jest.config-e2e.js --colors",
"format": "yarn lint:all --fix",
"generate-json-schemas:synthetics": "ts-json-schema-generator --markdown-description --no-type-check --no-top-ref --additional-properties --path packages/plugin-synthetics/src/interfaces.ts --type TestConfig > packages/plugin-synthetics/src/test-config.schema.json && prettier --write packages/plugin-synthetics/src/test-config.schema.json",
"knip": "knip --include dependencies --no-config-hints",
"knip:strict": "knip --include dependencies --no-config-hints --strict",
"launch": "tsx --conditions=development packages/datadog-ci/src/cli.ts",
"launch:debug": "tsx --conditions=development --inspect-brk packages/datadog-ci/src/cli.ts",
"launch:dist": "node packages/datadog-ci/dist/bundle.js",
"lint": "yarn lint:all $@ || (echo \"\nYou can fix this by running ==> yarn format <==\n\" && false)",
"lint:all": "eslint --cache --quiet '**/*.ts'",
"lint:ci": "yarn lint:all -f @microsoft/sarif -o 'sarif-datadog-ci.sarif'",
"lint:packages": "FORCE_COLOR=1 tsx --conditions=development bin/lint-packages.ts",
"lint:readme-usage": "FORCE_COLOR=1 tsx --conditions=development bin/lint-readme-usage.ts",
"lint:yaml": "eslint --cache --quiet '**/*.yml' '**/*.yaml'",
"loop-packages": "yarn workspaces foreach --all --no-private",
"package:build": "yarn tsc:build $INIT_CWD",
"package:bundle:npm": "cd $INIT_CWD && node ../../scripts/tsdown-plugin.mjs",
"package:clean": "cd $INIT_CWD && rimraf dist tsconfig.tsbuildinfo",
"package:clean-dist": "cd $INIT_CWD && rimraf --glob 'dist/**/__tests__'",
"package:lint": "eslint --cache --quiet $INIT_CWD/src/**/*.ts",
"plugin:create": "bin/create-plugin.sh",
"publish:all": "yarn publish:deps \"$@\" && yarn publish:cli \"$@\"",
"publish:cli": "yarn workspace @datadog/datadog-ci npm publish",
"publish:deps": "yarn workspaces foreach --all --no-private --exclude packages/datadog-ci --topological --verbose npm publish",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --colors",
"test:debug": "node --experimental-vm-modules --inspect-brk node_modules/jest/bin/jest --colors --runInBand",
"test:dsyms": "yarn test packages/datadog-ci/src/commands/dsyms",
"test:helpers": "yarn test packages/datadog-ci/src/helpers",
"test:serverless": "yarn test packages/base/src/helpers/serverless packages/plugin-aas packages/plugin-container-app packages/plugin-lambda packages/plugin-cloud-run packages/plugin-stepfunctions",
"test:windows": "yarn test --config ./jest.config-windows.mjs",
"tsc:build": "tsc --build --verbose",
"version:all": "yarn loop-packages version ${0} --immediate"
},
"devDependencies": {
"@datadog/datadog-api-client": "1.53.0",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@stylistic/eslint-plugin": "5.3.1",
"@types/node": "20.19.37",
"@yao-pkg/pkg": "6.19.0",
"chalk": "3.0.0",
"dd-trace": "5.99.1",
"eslint": "9.34.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-yml": "3.4.0",
"glob": "13.0.6",
"jest": "29.6.4",
"jest-diff": "30.2.0",
"knip": "5.64.3",
"prettier": "3.6.2",
"rimraf": "5.0.10",
"syncpack": "14.3.0",
"ts-jest": "29.1.1",
"ts-json-schema-generator": "2.4.0",
"tsdown": "0.21.7",
"tsx": "4.20.6",
"typescript": "5.1.6",
"typescript-eslint": "8.42.0"
},
"knip": {
"ignoreDependencies": [
"@datadog/datadog-ci-plugin-*",
"@microsoft/eslint-formatter-sarif",
"dd-trace",
"glob",
"syncpack",
"tsdown"
]
},
"packageManager": "yarn@4.10.3",
"private": true,
"volta": {
"node": "22.22.3",
"yarn": "4.10.3"
},
"workspaces": [
"packages/*"
]
}