generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 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
{
"name": "aws-actions-aws-cloudformation-github-deploy",
"version": "2.0.0",
"description": "Deploys a AWS CloudFormation stack",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build src/main.ts -o dist",
"precommit": "lint-staged",
"test": "DEBUG=jest eslint **/*.ts && jest --coverage --detectOpenHandles --verbose",
"all": "npm run build && npm run precommit && npm run pack && npm test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/aws-cloudformation-github-deploy.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/aws-actions/aws-cloudformation-github-deploy/issues"
},
"homepage": "https://github.com/aws-actions/aws-cloudformation-github-deploy#readme",
"dependencies": {
"@actions/core": "2.0.2",
"@aws-sdk/client-cloudformation": "3.935.0",
"@smithy/node-http-handler": "4.4.5",
"https-proxy-agent": "7.0.6",
"js-yaml": "^4.1.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"@vercel/ncc": "0.38.4",
"aws-sdk-client-mock": "4.1.0",
"aws-sdk-client-mock-jest": "4.1.0",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-jest": "29.1.0",
"eslint-plugin-prettier": "5.5.4",
"fast-check": "^4.5.3",
"husky": "9.1.7",
"jest": "30.2.0",
"jest-circus": "30.2.0",
"js-yaml": "4.1.1",
"lint-staged": "16.2.7",
"prettier": "3.6.2",
"ts-jest": "29.4.5",
"typescript": "5.9.3"
}
}