-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.5 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
54
55
56
57
58
{
"name": "root",
"private": true,
"scripts": {
"fix": "lerna run fix",
"predocs-test": "npm docs",
"docs-test": "lerna run docs-test",
"docs": "lerna run docs",
"build": "lerna run build",
"lint-fix": "lerna run lint-fix",
"lint": "lerna run lint",
"test": "lerna run test",
"test:all": "lerna run test:all",
"test:integration": "lerna run test:integration --scope=workit",
"clean": "lerna clean -y",
"remark-lint": "remark .",
"codecov": "lerna run codecov"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"codecov": "^3.8.3",
"lerna": "^8.1.2",
"lerna-changelog": "^2.2.0",
"remark-cli": "^12.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lerna run lint-fix && remark .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lerna exec npm run test"
}
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"engines": {
"node": ">=18.18.0"
},
"workspaces": [
"./examples/basic",
"./examples/binding",
"./examples/event",
"./examples/failure-strategy",
"./examples/opentelemetry",
"./examples/parallel",
"./packages/workit",
"./packages/workit-bpm-client",
"./packages/workit-stepfunction-client",
"./packages/workit-core",
"./packages/workit-types"
]
}