-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
107 lines (107 loc) Β· 2.6 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "aws-sdk-client-mock-jest",
"description": "Custom Jest matchers for AWS SDK v3 Client mock",
"version": "4.1.0",
"license": "MIT",
"author": {
"name": "Maciej Radzikowski",
"email": "[email protected]",
"url": "https://radzikowski.com.pl"
},
"homepage": "https://github.com/m-radzikowski/aws-sdk-client-mock",
"repository": {
"type": "git",
"url": "https://github.com/m-radzikowski/aws-sdk-client-mock.git",
"directory": "packages/aws-sdk-client-mock-jest"
},
"keywords": [
"aws",
"aws-sdk",
"testing",
"mock",
"unit-testing",
"aws-lambda",
"jest",
"jest-matchers"
],
"scripts": {
"test": "pnpm run jest && pnpm run vitest",
"jest": "jest --coverage --colors ",
"vitest": "vitest run",
"test-types": "tsd",
"build:cjs": "tsc -p tsconfig.json",
"build:es": "tsc -p tsconfig.es.json",
"prebuild": "rimraf dist/",
"build": "pnpm run build:cjs && pnpm run build:es",
"local-publish": "pnpm publish --registry http://localhost:4873/ --no-git-checks"
},
"module": "dist/es/jest.js",
"main": "dist/cjs/jest.js",
"types": "dist/types/jest.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/types/jest.d.ts",
"default": "./dist/cjs/jest.js"
},
"import": {
"types": "./dist/types/jest.d.ts",
"default": "./dist/es/jest.js"
}
},
"./vitest": {
"require": {
"types": "./dist/types/vitest.d.ts",
"default": "./dist/cjs/vitest.js"
},
"import": {
"types": "./dist/types/vitest.d.ts",
"default": "./dist/es/vitest.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@vitest/expect": ">1.6.0",
"expect": ">28.1.3",
"tslib": "^2.1.0"
},
"devDependencies": {
"@aws-sdk/client-sns": "3.363.0",
"@jest/globals": "29.7.0",
"@smithy/types": "1.1.0",
"@types/jest": "29.5.12",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^2.1.1",
"aws-sdk-client-mock": "workspace:*",
"chalk": "^5.3.0",
"expect": "29.7.0",
"jest-serializer-ansi-escapes": "3.0.0",
"pretty-ansi": "^2.0.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"aws-sdk-client-mock": "workspace:*",
"vitest": ">1.6.0"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
},
"jest": {
"preset": "ts-jest",
"resetMocks": true,
"testEnvironment": "node",
"snapshotSerializers": [
"jest-serializer-ansi-escapes"
],
"coverageThreshold": {
"global": {
"statements": 100
}
}
}
}