-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
79 lines (79 loc) Β· 1.9 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
78
79
{
"name": "aws-sdk-client-mock-monorepo",
"private": true,
"version": "4.1.0",
"packageManager": "[email protected]+sha256.30a1801ac4e723779efed13a21f4c39f9eb6c9fbb4ced101bce06b422593d7c9",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"pretest": "rimraf coverage/",
"test": "pnpm -r run test",
"test-types": "pnpm -r run test-types",
"test-e2e": "ts-node test-e2e/simple/run.ts",
"lint": "eslint .",
"build": "pnpm -r run build",
"generate-docs": "pnpm -r run typedoc",
"release": "standard-version",
"verdaccio": "rimraf verdaccio-storage && verdaccio -c verdaccio.yml",
"local-publish": "pnpm -r run local-publish",
"do-publish": "pnpm -r publish"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/jest": "29.5.12",
"@types/node": "20.14.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.0",
"extract-changelog-release": "1.0.2",
"husky": "8.0.3",
"jest": "29.7.0",
"rimraf": "5.0.7",
"standard-version": "9.5.0",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"tsd": "0.31.0",
"typescript": "5.1.6",
"verdaccio": "5.31.0"
},
"pnpm": {
"overrides": {
"@smithy/types": "1.1.0"
}
},
"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"
}
]
}
}