This repository was archived by the owner on Jun 26, 2025. It is now read-only.
generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 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
{
"name": "custom-resources",
"description": "Custom Resources to support Cognito User Profiles Export Reference Architecture",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com/solutions"
},
"license": "Apache-2.0",
"version": "1.0.2",
"private": true,
"dependencies": {
"axios": "^0.28.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.398.0",
"@aws-sdk/client-cognito-identity-provider": "^3.402.0",
"@aws-sdk/client-dynamodb": "^3.398.0",
"@aws-sdk/client-sfn": "^3.398.0",
"@aws-sdk/client-ssm": "^3.398.0",
"aws-sdk-client-mock": "^3.0.0",
"axios-mock-adapter": "^1.19.0",
"jest": "^29.7.0"
},
"scripts": {
"clean": "rm -rf dist/ node_modules/ coverage/",
"test": "jest test/*.spec.js --coverage --silent",
"package:zip": "cd dist && zip -rq package.zip .",
"package:dist": "mkdir dist && rsync -avr ../utils ./dist/ && rsync -avr --exclude=*test* --exclude=*dist* --exclude=*node_modules* ./ ./dist/$npm_package_name && rsync -avr ./node_modules ./dist/$npm_package_name",
"package": "npm run clean && npm install --production && npm run package:dist && npm run package:zip",
"build": "npm run clean && npm install"
}
}