-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
{
"name": "mocking_aws_services",
"version": "1.0.0",
"main": "organizations.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --runInBand",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --runInBand --coverage",
"test:junit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --runInBand --coverage --reporters=default --reporters=jest-junit"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@aws-sdk/client-organizations": "^3.738.0"
},
"jest": {
"testEnvironment": "node",
"transform": {},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"coverageReporters": [
"text",
"html",
"json-summary"
]
},
"devDependencies": {
"aws-sdk-client-mock": "^4.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0"
},
"jest-junit": {
"outputDirectory": "coverage",
"outputName": "junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}