-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.03 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
{
"name": "root",
"private": true,
"scripts": {
"fix": "npm run fix --workspaces --if-present",
"predocs-test": "npm docs",
"docs-test": "npm run docs-test --workspaces --if-present",
"docs": "npm run docs --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint-fix": "npm run lint-fix --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:all": "npm run test:all --workspaces --if-present",
"test:integration": "npm run test:integration --workspace=@villedemontreal/workit --if-present",
"release:version": "node ./scripts/set-release-version.mjs",
"release:verify": "node ./scripts/verify-release-version.mjs",
"release:dry-run": "npm run build && npm publish --workspaces --dry-run",
"clean": "npm run clean --workspaces --if-present",
"remark-lint": "remark ."
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^20.19.43",
"eslint-config-airbnb-base": "^15.0.0",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"typescript": "^5.9.3"
},
"overrides": {
"@opentelemetry/api": "1.9.0",
"@opentelemetry/context-async-hooks": "2.2.0",
"@opentelemetry/core": "2.2.0",
"@opentelemetry/resources": "2.2.0",
"@opentelemetry/sdk-metrics": "2.2.0",
"@opentelemetry/sdk-trace-base": "2.2.0",
"@opentelemetry/sdk-trace-node": "2.2.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"engines": {
"node": ">=20.6.0"
},
"workspaces": [
"./packages/workit-types",
"./packages/workit-core",
"./packages/workit-bpm-client",
"./packages/workit-stepfunction-client",
"./packages/workit",
"./examples/basic",
"./examples/binding",
"./examples/failure-strategy",
"./examples/opentelemetry",
"./examples/parallel",
"./examples/plugin-metrics"
],
"version": "6.0.1"
}