-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "aws-actions-aws-cloudformation-github-deploy",
"version": "1.1.0",
"description": "Deploys a AWS CloudFormation stack",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"precommit": "lint-staged",
"test": "DEBUG=jest eslint **/*.ts && jest --coverage --detectOpenHandles --verbose",
"all": "npm run build && npm run precommit && npm run pack && npm test"
},
"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",
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run test"
}
},
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-cloudformation": "^3.474.0",
"@smithy/node-http-handler": "3.0.0",
"https-proxy-agent": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.36.1",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "4.8.4"
}
}