-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.27 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
{
"name": "mutable-tag-ecs-updater-cdk",
"version": "1.5.0",
"description": "Updates ECS image tags based on GHCR package versions.",
"license": "MIT",
"author": {
"name": "Isotoma Limited",
"email": "[email protected]",
"url": "https://isotoma.com"
},
"repository": {
"type": "git",
"url": "https://github.com/isotoma/mutable-tag-ecs-updater-cdk"
},
"keywords": [
"aws",
"cdk",
"ecs",
"ghcr",
"docker",
"image",
"tags"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"tsc": "tsc",
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && npm run compile-lambda && cp -R ./lambda/build/ ./build/lambda/ && cp package.json README.md ./build/",
"clean-lambda": "rm -rf lambda/build/",
"compile-lambda": "npm run clean-lambda && npx esbuild --platform=node --target=node18 --minify-syntax --external:@aws-sdk --bundle --outdir=./lambda/build ./lambda/index.ts",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"_lint": "eslint 'index.ts' 'test/**/*.ts' 'lambda/**/*.ts' jest.config.js",
"lint": "npm run -- _lint --fix",
"lint-check": "npm run -- _lint --max-warnings 0",
"format": "prettier --ignore-path .gitignore --write \"**/*+(ts|json)\""
},
"devDependencies": {
"@aws-sdk/client-ecs": "^3.391.0",
"@aws-sdk/client-secrets-manager": "^3.391.0",
"@types/jest": "^29.4.0",
"@types/node": ">=18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"auto-changelog": "^2.4.0",
"aws-cdk-lib": "^2.92.0",
"constructs": "^10.0.0",
"esbuild": "^0.19.2",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.1",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0",
"constructs": "^10.0.0"
}
}