forked from m-radzikowski/aws-sdk-client-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) Β· 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "aws-sdk-client-mock-monorepo",
"private": true,
"version": "3.0.0",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"pretest": "rimraf coverage/",
"test": "yarn workspaces foreach -pv run test",
"test-types": "yarn workspaces foreach -pv run test-types",
"test-e2e": "ts-node test-e2e/simple/run.ts",
"lint": "eslint .",
"build": "yarn workspaces foreach -pv --topological-dev run build",
"docs": "yarn workspace aws-sdk-client-mock run typedoc",
"release": "standard-version",
"verdaccio": "rimraf verdaccio-storage && verdaccio -c verdaccio.yml",
"local-publish": "yarn workspaces foreach -pv run local-publish",
"publish": "yarn workspaces foreach -pv --no-private npm publish"
},
"devDependencies": {
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@types/node": "18.15.0",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"eslint": "8.36.0",
"extract-changelog-release": "1.0.2",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.0",
"rimraf": "4.4.0",
"standard-version": "9.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tsd": "0.27.0",
"typescript": "4.9.5",
"verdaccio": "5.5.2"
},
"lint-staged": {
"*.ts": "yarn lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"",
"core",
"jest"
]
]
}
},
"standard-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "packages/aws-sdk-client-mock/package.json",
"type": "json"
},
{
"filename": "packages/aws-sdk-client-mock-jest/package.json",
"type": "json"
}
]
}
}