-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
{
"name": "aws-testing-library",
"version": "4.0.6",
"description": "Chai and Jest matchers for aws services",
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts",
"build": "tsc -p tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"format": "prettier --write src/**/*.ts",
"format:ci": "prettier --list-different src/**/*.ts",
"prepare": "husky install"
},
"files": [
"lib"
],
"keywords": [
"serverless",
"testing",
"aws",
"jest",
"chai",
"mocha",
"s3",
"dynamoDb",
"api",
"cloudwatch",
"kinesis",
"lambda",
"sqs",
"sns",
"step-function"
],
"repository": {
"type": "git",
"url": "git+https://github.com/erezrokah/aws-testing-library.git"
},
"homepage": "https://github.com/erezrokah/aws-testing-library/#readme",
"author": "Erez Rokah",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@tsconfig/node16": "^1.0.3",
"@types/chai": "^4.2.12",
"@types/jest": "^29.0.0",
"@types/mockdate": "^2.0.0",
"@types/node": "^18.0.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"mockdate": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"aws-sdk": "^2.678.0",
"axios": "^0.29.0",
"filter-obj": "^3.0.0",
"jest-diff": "^29.0.0",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=16.10.0"
}
}