-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.57 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.57 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
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
{
"name": "sls-jest",
"version": "0.0.0-dev",
"description": "A collection of matchers and spies for testing AWS serverless applications",
"repository": "https://github.com/serverless-guru/sls-jest",
"homepage": "https://serverlessguru.gitbook.io/sls-jest/",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"bin": {
"sls-jest": "lib/bin/sls-jest.js",
"sls-jest-deploy-stack": "lib/bin/sls-jest-deploy-stack.js"
},
"scripts": {
"test": "npx jest",
"typecheck": "tsc --noEmit",
"build": "npx rimraf ./lib && tsc",
"lint": "eslint src --ext .ts",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"author": "Serverless Guru LLC",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@aws-appsync/utils": "^1.6.0",
"@tsconfig/node20": "^20.1.2",
"@types/aws-lambda": "^8.10.101",
"@types/command-line-args": "^5.2.0",
"@types/jest": "^29.1.1",
"@types/lodash": "^4.14.182",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"aws-lambda": "^1.0.7",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^6.0.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public",
"scope": "serverless-guru"
},
"dependencies": {
"@aws-sdk/client-appsync": "^3.478.0",
"@aws-sdk/client-cloudformation": "^3.478.0",
"@aws-sdk/client-cloudwatch": "^3.478.0",
"@aws-sdk/client-cloudwatch-logs": "^3.478.0",
"@aws-sdk/client-cognito-identity-provider": "^3.478.0",
"@aws-sdk/client-dynamodb": "^3.478.0",
"@aws-sdk/client-lambda": "^3.478.0",
"@aws-sdk/client-s3": "^3.478.0",
"@aws-sdk/client-sqs": "^3.478.0",
"@aws-sdk/lib-dynamodb": "^3.478.0",
"@jest/expect-utils": "^29.1.2",
"@types/async-retry": "^1.4.5",
"async-retry": "^1.3.3",
"aws-cdk": "^2.116.1",
"aws-cdk-lib": "^2.116.1",
"command-line-args": "^5.2.1",
"commander": "^9.4.0",
"constructs": "^10.1.67",
"jest-matcher-utils": "^29.1.2",
"jest-snapshot": "^29.1.2",
"json-canonicalize": "^1.0.4",
"lodash": "^4.17.21",
"rxjs": "^7.5.6",
"source-map-support": "^0.5.21",
"typescript": "^4.7.4",
"zod": "^3.18.0"
},
"peerDependencies": {
"jest": ">=28"
}
}